header {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    background: rgba(255,255,255,.95);

    backdrop-filter: blur(10px);

    z-index: 999;

    padding: 10px 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 2px 15px rgba(0,0,0,.05);

}

.logo img {

    height: 80px;
    width: auto;
    display: block;

}

nav {

    display: flex;
    gap: 25px;

}

nav a {

    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;

    transition: .3s;

}

nav a:hover {

    color: var(--accent);

}

.header-right {

    display: flex;
    align-items: center;
    gap: 15px;

}

.social {

    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;

    transition: .3s;

}

.social:hover {

    color: var(--accent);

}

#language-switch {

    border: none;
    background: var(--accent);

    padding: 10px 15px;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 600;

}

.menu-toggle {

    display: none;

    font-size: 2rem;

    cursor: pointer;

}