@import url('base.css');


/* ===================== HEADER ===================== */
.site-header {
    position: fixed;
    top: 15px;
    left: 30px;
    right: 30px;
    z-index: 1000;
    background: #1f323086;
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-radius: 16px;
    padding: 0 28px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
}

/* ---- Logo ---- */
.site-header .header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-header .logo-icon img {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.site-header .logo-text {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ---- Desktop Nav ---- */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: #ffffffe0;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 9px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: #877E55;
    color: #1F3230;
}


.nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    margin-right: 10px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.nav-wa:hover {
    transform: scale(1.1);
}

.nav-wa img {
    width: 35px;
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    border: none;
    background-color: #1f323000;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-size: 30px;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ---- Mobile WA (outside drawer) ---- */
.wa-mobile {
    display: none;
}

/* ---- Mobile Drawer ---- */
.mobile-drawer {
    position: fixed;
    top: 86px;
    left: 30px;
    right: 30px;
    z-index: 999;
    background: #1f323086;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 14px;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-drawer.open {
    max-height: 400px;
    opacity: 1;
    pointer-events: all;
}

.mobile-drawer .m-link {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    padding: 14px 22px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.15s;
}

.mobile-drawer .m-link:last-child {
    border-bottom: none;
}

.mobile-drawer .m-link:hover,
.mobile-drawer .m-link.active {
    color: var(--light_gold);
}


/* ===================== FOOTER ===================== */
footer {
    width: 100%;
    height: auto;
    background-color: var(--dark_green);
    margin-bottom: 0;
    color: var(--dark_text_color);
    padding-bottom: 30px;
}


.social {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    /* background-color: #1F3230; */
     background: #1f323086;
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    padding: 10px;
    display: flex;
    gap: 20px;
    border-radius: 20px 20px 0px 0px;
    right: 50%;
    transform: translateX(50%);
    transition: 0.3s ease-in-out;
}

.social i {
    font-size: 25px;
    color: var(--light_gold);
}

#footer_logo {
    width: 100%;
}
/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .wa-mobile {
        display: inline-flex;
    }

    .cards {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
    }

    .hero {
        padding: 110px 24px 50px;
    }

    .hero h1 {
        font-size: 26px;
    }
}