/* ===== HEADER ===== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.header__nav {
    width: 100%;
}

.header__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */

.header__logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
}

/* ===== MENU ===== */

.header__menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.header__link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    text-decoration: none;
    transition: 0.3s;
}

.header__link:hover {
    color: #000;
}

.header__link--active {
    color: #000;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
}

/* ===== BUTTON ===== */

.header__button {
    background: #000;
    color: #fff;
    padding: 12px 32px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.header__button:hover {
    background: #333;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .header__menu {
        display: none;
    }

    .header__button {
        display: none;
    }

    .header__container {
        padding: 16px 20px;
    }
}

.header__toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE */

@media (max-width: 768px) {

    .header__menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .header__menu--active {
        display: flex;
    }

    .header__container {
        padding: 16px 20px;
    }

    .header__button {
        display: none;
    }

    .header__toggle {
        display: block;
        margin-left: auto;
    }
}