* {
    font-family: 'Inria Serif', Inter, SansSerif;
}

header {
    position: fixed;
    top: 0;
    z-index: 3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 56.07%, rgba(0, 0, 0, 0) 90.38%);
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}


header .logo img {
    height: 72px;
}

header .nav-menu,
.sticky-header .nav-menu {
    display: flex;
    gap: 48px;
}

header .nav-menu a,
.sticky-header .nav-menu a {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 2.5px;
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

header .nav-menu a:hover,
.sticky-header .nav-menu a:hover {
    border-bottom-color: white;
    transition: border-bottom-color 0.3s ease;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

/* Mobile Menu Canvas */
.mobile-menu-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, rgba(81, 62, 39, 0.95) 0%, rgba(81, 62, 39, 0.98) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-canvas.active {
    transform: translateX(0);
}

.mobile-menu-header {
    position: fixed;
    padding: 0 24px;
    left: 0;
    top: 0;
    z-index: 3;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 56.07%, rgba(0, 0, 0, 0) 90.38%);
    width: 100%;
    height: 88px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    height: 48px;
}

.close-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.close-menu:hover {
    opacity: 0.7;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: auto;
    align-items: center;
}

.mobile-nav-link {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 2.5px;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-link:hover {
    opacity: 0.7;
}

.mobile-social-icons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 24px;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mobile-social-icon:hover {
    opacity: 0.7;
}

.mobile-copyright {
    text-align: center;
    color: white !important;
    font-weight: 700;
    font-size: 11px;
    line-height: 170%;
    letter-spacing: 1.65px;
    text-decoration: none !important;
}

.mobile-menu-canvas .mobile-social-icon img {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
}


/* Footer Styles */
.public-footer {
    background-color: #f5f5f5;
    padding: 60px 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    max-width: 100%;
}

.footer-left {
    display: flex;
    align-items: end;
    gap: 24px;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: #2d2d2d;
    margin: 0;
    margin-bottom: 8px;
    max-width: 388px;
}

.footer-map-img {
    height: 160px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: end;
    position: relative;
}

.footer-menu-text-container {
    display: flex;
    justify-content: end;
    gap: 32px;
    position: absolute;
    right: 0;
    top: 0;
}

.footer-wa-text,
.footer-menu-text {
    font-size: 14px;
    min-width: fit-content;
    max-width: fit-content;
    text-decoration: none;
    color: #513E27;
    line-height: 150%;
    letter-spacing: 2.5px;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.footer-wa-text {
    letter-spacing: unset;
    color: black;
    text-decoration: none;
}

.footer-right-sub {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: end;
    justify-content: end;
}

.footer-wa-text:hover,
.footer-menu-text:hover {
    border-bottom-color: #513E27;
    transition: border-bottom-color 0.3s ease;
}

.footer-wa-text:hover {
    border-bottom-color: black;
}

.social-media-icons {
    display: flex;
    justify-content: end;
    gap: 8px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.copyright-text {
    text-align: right;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #828282;
}

.mobile-show {
    display: none;
}

.mobile-hidden {
    display: initial;
}

.hover-link-text {
    font-size: 14px;
    line-height: 185%;
    color: white;
    letter-spacing: 3.6px;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 8px;
    padding: 2px 8px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: color 0.5s ease-in-out;
    isolation: isolate;
    opacity: 0;
}

.hover-link-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: width 0.5s ease-in-out;
    z-index: -1;
}

.hover-link-text:hover::before {
    width: 100%;
}

.hover-link-text:hover {
    color: #6B5D4F;
}

.hover-link-text.brown {
    color: #513E27 !important;
}

.hover-link-text.brown::before {
    background: #3d2e1f !important;
}

.hover-link-text.brown:hover {
    color: white !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    header {
        height: 160px;
        padding: 0 40px;
    }

    .footer-map-img {
        height: 130px;
    }

    .public-footer {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    header {
        z-index: 5;
        padding: 0 24px;
        height: 88px;
    }

    .hamburger-menu {
        display: flex;
    }

    .desktop-menu {
        display: none !important;
    }

    header .logo img {
        height: 48px;
    }

    .public-footer {
        padding: 24px;
    }

    .footer-left {
        max-width: 40%;
        flex-direction: column;
        align-items: start;
    }

    .footer-map-img {
        height: 80px;
    }

    .footer-address,
    .footer-wa-text {
        font-size: 8px;
        line-height: 150%;
        letter-spacing: 0;
        margin-bottom: 0;
    }


    .footer-menu-text {
        border-bottom-width: 1px;
    }

    .footer-wa-text {
        border-bottom-width: 0.5px;
    }

    .footer-right {
        max-width: 60%;
    }

    .footer-menu-text-container {
        flex-direction: column;
        align-items: end;
        gap: 4px;
    }

    .footer-menu-text {
        font-size: 9px;
        text-align: right;
    }

    .social-media-icons {
        margin-top: 24px;
        padding: 0 4px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }

    .copyright-text {
        font-weight: 700;
        font-size: 8px;
        line-height: 150%;
        text-align: left;
        margin-top: 8px;
        padding: 0 4px;
    }
}

@media (max-width: 576px) {
    .mobile-show {
        display: initial;
    }

    .mobile-hidden {
        display: none !important;
    }

    .hover-link-text {
        font-size: 9px;
        line-height: 150%;
        letter-spacing: 1.35px;
        text-underline-offset: 6px;
        padding: 4px 8px;
    }

       .social-media-icons {
        justify-content: start;
    }
}
