/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--blue-800);
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--blue-500);
}

/* NAV LINKS DESKTOP */
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--blue-700);
}

.nav-cta {
    background: var(--blue-800);
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: background 0.2s ease;
}

.nav-cta:hover {
    background: var(--blue-700);
}

/* HAMBURGER */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--blue-800);
    border-radius: 3px;
    transition: 0.3s ease;
}

/* FOOTER */
footer {
    background: var(--blue-900);
    color: rgba(255,255,255,0.7);
    padding: 40px 5%;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 24px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        padding: 10px 18px;
    }
}

/* FOOTER LINKS */
.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

/* FOOTER RESPONSIVE */
@media (max-width: 992px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .footer-copy {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ACTIVE MENU LINK */
.nav-links a.active,
.footer-links a.active {
    background: var(--blue-800);
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
}