:root {
    --gold-primary: #C9A227;
    --navy-primary: #0B1B33;
    --cream-background: #F8F5EE;
    --white: #FFFFFF;
    --text-dark: #111827;

    --header-height: 78px;
}

.header {
    height: var(--header-height);
}

.header {
    isolation: isolate;
}

.hero {
    min-height: calc(100dvh - var(--header-height));
}

.header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

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

    width: 100%;
    padding: 1rem 4rem;

    background: rgba(191, 161, 90, 0.9);
    backdrop-filter: blur(12px);

    box-sizing: border-box;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.header__brand img {
    height: 40px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: opacity 0.25s ease;
}

.header__nav a:hover {
    opacity: 0.8;
}

.header__quote {

    padding: 0.75rem 1.8rem;

    background: transparent;

    color: #FFFFFF;

    border: 2px solid #FFFFFF;

    border-radius: 999px;

    text-decoration: none;

    font-size: 1rem;

    font-family: "Arial", sans-serif;

    font-weight: 800;

    letter-spacing: 0.03em;

    transition: all 0.35s ease;

    box-shadow:
        0 6px 18px rgba(255, 255, 255, 0.08);

}

.header__quote:hover {

    background: rgba(255, 255, 255, 0.15);

    color: #FFFFFF;

    border-color: #FFFFFF;

    transform: translateY(-3px) scale(1.03);

    box-shadow:
        0 14px 30px rgba(11, 27, 51, 0.25),
        0 0 18px rgba(255, 255, 255, 0.25);

}

.header__nav a {
    position: relative;

    color: #FFFFFF;
    text-decoration: none;

    transition: 0.3s ease;
}


.header__nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: #FFFFFF;

    transition: width 0.3s ease;

}


.header__nav a:hover::after {

    width: 100%;

}

.header__login {

    padding: 0.75rem 1.8rem;

    background: #0B1B33;

    color: #FFFFFF;

    border-radius: 12px;

    text-decoration: none;

    font-size: 1rem;

    font-family: "Arial", sans-serif;

    font-weight: 800;

    letter-spacing: 0.03em;

    transition: all 0.35s ease;

    box-shadow:
        0 8px 20px rgba(11, 27, 51, 0.25);

}


.header__login:hover {

    background: #132A4A;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(11, 27, 51, 0.4),
        0 0 18px rgba(191, 161, 90, 0.35);

}

.header__login::after,
.header__quote::after {
    content: none;
}

.header__login::after,
.header__quote::after {
    display: none;
}

.header {
    font-family: "Arial", sans-serif;
}

.header__nav a,
.header__login,
.header__quote,
.header__brand {
    font: inherit;
    text-decoration: none;
}

.header__nav a,
.header__login,
.header__quote,
.header__brand {
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Large laptops */
@media (max-width: 1200px) {

    .header {
        padding: 1rem 3rem;
    }

    .header__nav {
        gap: 1.5rem;
    }

}

/* Tablets */
@media (max-width: 992px) {

    .header {
        padding: 0.9rem 2rem;
    }

    .header__brand img {
        height: 34px;
    }

    .header__brand span {
        font-size: 1rem;
    }

    .header__nav {
        gap: 1rem;
    }

    .header__nav a {
        font-size: 0.9rem;
    }

    .header__login,
    .header__quote {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

}

.header__toggle {

    display: none;

    background: none;

    border: none;

    cursor: pointer;

    flex-direction: column;

    gap: 6px;

}


.header__toggle span {

    width: 28px;

    height: 3px;

    background: white;

    border-radius: 100px;

    transition: 0.35s ease;

}

@media (max-width: 768px) {

    .header {

        padding: 1rem 1.5rem;

    }

    .header__nav {

        display: none;

    }

    .header__toggle {

        display: flex;

    }

    :root {
        --header-height: 70px;
    }

}

@media (max-width: 768px) {

    .header__nav {

        display: flex;

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        padding: 2rem;

        background: rgba(191, 161, 90, 0.95);

        backdrop-filter: blur(15px);

        flex-direction: column;

        align-items: center;

        gap: 1.5rem;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;

    }


    .header__nav.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

}

.header__toggle {

    position: relative;

    width: 30px;

    height: 24px;

}


.header__toggle span {

    position: absolute;

    left: 0;

    width: 100%;

    height: 3px;

    background: white;

    border-radius: 100px;

    transition: all 0.35s ease;

}


.header__toggle span:nth-child(1) {

    top: 0;

}


.header__toggle span:nth-child(2) {

    top: 10px;

}


.header__toggle span:nth-child(3) {

    top: 20px;

}

.header__toggle.active span:nth-child(1) {

    top: 10px;

    transform: rotate(45deg);

}


.header__toggle.active span:nth-child(2) {

    opacity: 0;

}


.header__toggle.active span:nth-child(3) {

    top: 10px;

    transform: rotate(-45deg);

}

.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    transition: all 0.35s ease;

    z-index: 900;

}


.menu-overlay.active {

    opacity: 1;

    visibility: visible;

}

@media (max-width: 768px) {

    .header__nav {

        z-index: 1100;

    }

}