@font-face {
    font-family: noto-sans;
    src: url('/fonts/NotoSans-Regular.ttf');
}

@font-face {
    font-family: noto-sans-semibold;
    src: url('/fonts/NotoSans-SemiBold.ttf');
}

@font-face {
    font-family: noto-sans-bold;
    src: url('/fonts/NotoSans-Bold.ttf');
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #ffffff;
    font-family: noto-sans;
}

.top-banner-link {
    text-decoration: none;
}

.top-banner {
    width: 100%;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    background-color: #C1FF72;
}

.top-banner h3 {
    margin: 0;
    color: #286241;
    font-family: noto-sans-bold;
}

.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

/* Bottom shadow on the nav bar when page is scrolled (not at top) */
.header-wrapper.header-wrapper--scrolled .header {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #ffffff;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    object-fit: contain;
    height: 140px;
}

.logo-img-mobile {
    display: none;
    height: 120px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-close {
    display: none;
}

.header-right-wrap {
    display: none;
}

.action-group-mobile-header {
    display: none;
}

.header-action-icon-btn {
    padding: 10px;
}

.header-action-icon-btn .fa {
    font-size: 18px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    font-size: 18px;
    color: #286241;
    text-decoration: none;
    font-family: noto-sans-bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-link-item:hover {
    color: #359F49;
}

.nav-link-with-arrow::after {
    content: '';
    display: inline-block;
    margin-left: 10px;
    border: solid #2c2c2c;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    vertical-align: 3px;
}

/* Dropdown menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 0;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu>li {
    position: relative;
}

.dropdown-menu>li>a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu>li>a:hover {
    background-color: #f5f5f5;
    color: #286241;
}

/* Sub-dropdown (nested) */
.dropdown-item-has-children:has(.dropdown-submenu)>a::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    border: solid #000;
    border-width: 0 1.5px 1.5px 0;
    padding: 2px;
    transform: rotate(-45deg);
    vertical-align: 2px;
}

.header-dropdown-level-1 {
    background-color: #65BD54;
}

.header-dropdown-level-2 {
    background-color: #359F49;
}

.header-dropdown-level-3 {
    background-color: #286241;
}

.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 8px 0;
    margin-left: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1001;
}

.dropdown-item-has-children:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.dropdown-submenu li a:hover {
    background-color: #f5f5f5;
    color: #286241;
}

/* Action buttons */
.action-group {
    display: flex;
    gap: 12px;
}

.action-group-mobile {
    display: none;
}

.header-action-btns {
    padding: 12px 20px;
    background-color: #286241;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: inherit;
    font-family: noto-sans-bold;
}

.header-action-btns:hover {
    background-color: #359f49;
}

/* Special styling for the header Book button */
.header-action-btns--book {
    background-color: #C1FF72;
    color: #286241;
}

.header-action-btns--book:hover {
    /* Keep the "book" look on hover */
    background-color: #B0E671;
    color: #286241;
}

.footer-contact-info i {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

/* Mobile responsive */
@media (max-width: 1280px) {
    .header {
        padding: 0 24px;
    }

    .nav-link-item {
        font-size: 16px;
    }

    .nav-links {
        gap: 20px;
    }

    .logo-img {
        height: 100px;
    }
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .logo-img {
        height: 90px;
    }

    .header-action-btns {
        font-size: 11px;
        padding: 10px 13px;
    }

    .nav-link-item {
        font-size: 14px;
    }

    .nav-links {
        gap: 10px;
    }

    .logo-img {
        height: 80px;
    }

    .header {
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 10px;
    }

    .logo-img-mobile {
        display: block;
        height: 90px;
    }

    .logo-img {
        display: none;
    }

    .header-right-wrap {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .action-group-mobile-header {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 0 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transform: translateX(280px);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .mobile-menu-close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .mobile-menu-close .close-icon {
        font-size: 32px;
        color: #333;
        line-height: 1;
        font-weight: 300;
    }

    .mobile-menu-close:hover .close-icon {
        color: #286241;
    }

    .nav-container.is-open {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links>li {
        border-bottom: 1px solid #eee;
    }

    .nav-link-item {
        display: block;
        padding: 16px 24px;
        font-size: 14px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f9f9f9;
    }

    .nav-item-dropdown.is-open .dropdown-menu {
        max-height: 2000px;
    }

    .dropdown-menu>li>a {
        padding: 12px 24px 12px 40px;
    }

    .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f0f0f0;
        border-left: 3px solid #286241;
    }

    .dropdown-item-has-children.is-open .dropdown-submenu {
        max-height: 500px;
    }

    .dropdown-item-has-children:has(.dropdown-submenu)>a::after {
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .dropdown-item-has-children:has(.dropdown-submenu).is-open>a::after {
        transform: rotate(-135deg);
    }

    .action-group-desktop {
        margin-left: auto;
        margin-right: 10px;
    }

    .dropdown-submenu li a {
        padding: 10px 24px 10px 56px;
    }

    .header-action-icon-btn {
        width: 44px;
        height: 44px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        background-color: transparent;
        color: #474747;
    }

    .header-action-icon-btn:hover {
        background-color: transparent;
    }

    .header-action-icon-btn .fa {
        font-size: 25px;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }

    .nav-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }
}

/* Footer */
.site-footer {
    background-color: #386641;
    padding: 64px 24px;
    color: #fff;
}

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

.footer-stay-connected {
    flex: 1;
    min-width: 280px;
    max-width: 420px;
}

.footer-heading {
    margin: 0 0 12px;
    font-size: 2.15rem;
    font-weight: 700;
    color: #fff;
    font-family: noto-sans-bold, sans-serif;
}

.footer-desc {
    margin: 0 0 20px;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.5;
}

.footer-newsletter {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    max-width: 360px;
}

.footer-email-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: none;
    border-radius: 8px 0 0 8px;
    background-color: #fff;
    color: #1a1a1a;
    min-width: 0;
}

.footer-email-input::placeholder {
    color: #666;
}

.footer-enter-btn {
    padding: 12px 24px;
    background-color: #B0E671;
    color: #286241;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-family: noto-sans-bold, sans-serif;
}

.footer-enter-btn:hover {
    background-color: #9fd65a;
}

.footer-enter-btn:disabled,
.footer-enter-btn.is-loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.footer-newsletter-success {
    margin: 0 0 24px;
    max-width: 360px;
    padding: 12px 16px;
    background-color: rgba(176, 230, 113, 0.25);
    color: #fff;
    font-size: 0.95rem;
    border-radius: 8px;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #B0E671;
}

.footer-nav {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-links-col {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col li:last-child {
    margin-bottom: 0;
}

.footer-links-col a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links-col a:hover {
    color: #B0E671;
}

.footer-stay-connected .footer-social {
    margin-top: 0;
}

.footer-social-title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.site-footer .footer-inner>div {
    min-width: 0;
}

@media (max-width: 992px) {
    .footer-inner {
        gap: 32px;
    }

    .footer-inner .footer-nav {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 48px 20px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-stay-connected {
        max-width: 100%;
        min-width: 0;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .footer-heading {
        font-size: 1.75rem;
    }

    .footer-inner>div {
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0;
    }
}

.privacy-statement {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.privacy-statement-title {
    margin: 0 0 24px;
    font-size: 1.75rem;
    font-family: noto-sans-bold, sans-serif;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.privacy-statement>p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #656f72;
    text-align: justify;
}

.privacy-section-heading {
    margin: 28px 0 12px;
    font-size: 1.15rem;
    font-family: noto-sans-semibold, sans-serif;
    color: #333;
    font-weight: 600;
}

.privacy-statement .privacy-section-heading+p {
    margin-top: 0;
}