/* GLOBAL */

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}


/* HEADER */

..site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    background: transparent;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}


/* MAIN */

.site-main {
    min-height: 60vh;
}


/* HEADER */

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    position: relative;

    width: min(1280px, 92%);
    min-height: 78px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}
/* LOGO  */

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}


/* WORDPRESS CUSTOM LOGO  */

.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-navigation {
    margin-left: auto;
}

.primary-menu {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 30px;

    list-style: none;
}

.primary-menu li {
    margin: 0;
    padding: 0;
}

.primary-menu a {
    position: relative;

    display: inline-block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    padding: 8px 0;

    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);

    transition:
        color 0.3s ease;
}

.primary-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #f5c400;

    transition:
        width 0.3s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: #f5c400;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
    width: 100%;
}

/*  BOOK ONLINE BUTTON */

.header-booking {
    flex-shrink: 0;
}

.booking-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 8px 20px;

    background: #f5c400;
    color: #000000;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.booking-button:hover {
    background: #ffffff;
    color: #000000;

    transform: translateY(-2px);
}
/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-background {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.20) 45%,
            rgba(0, 0, 0, 0.60) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: min(900px, 90%);

    margin-top: 60px;

    text-align: center;

    color: #ffffff;
}


/* =========================================================
   HERO SUBTITLE
========================================================= */

.hero-subtitle {
    display: inline-block;

    margin-bottom: 18px;

    color: #f5c400;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
    margin: 0 auto;

    max-width: 850px;

    color: #ffffff;

    font-size: clamp(42px, 6vw, 82px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -1.5px;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.55);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 650px;

    margin: 25px auto 35px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 16px;

    line-height: 1.7;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 150px;

    padding: 13px 28px;

    background: #f5c400;
    color: #000000;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-button:hover {
    background: #ffffff;
    color: #000000;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   HERO SCROLL INDICATOR
========================================================= */

.hero-scroll {
    position: absolute;

    bottom: 30px;
    left: 50%;

    z-index: 3;

    width: 25px;
    height: 40px;

    border: 2px solid rgba(255, 255, 255, 0.8);

    border-radius: 20px;

    transform: translateX(-50%);
}

.hero-scroll span {
    position: absolute;

    top: 7px;
    left: 50%;

    width: 4px;
    height: 8px;

    background: #ffffff;

    border-radius: 5px;

    transform: translateX(-50%);

    animation: heroScroll 1.8s infinite;
}

@keyframes heroScroll {

    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }

}

/* MOBILE MENU BUTTON */

.mobile-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* MOBILE NAVIGATION  */

.mobile-navigation {
    display: none;

    padding: 20px 5% 25px;

    background: #000000;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu {
    margin: 0;
    padding: 0;

    list-style: none;
}

.mobile-menu li {
    margin: 0;
    padding: 0;
}

.mobile-menu a {
    display: block;

    padding: 13px 0;

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu .current-menu-item > a {
    color: #f5c400;
}

.mobile-booking-button {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 20px;

    padding: 12px 20px;

    background: #f5c400;
    color: #000000;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
}


/* MOBILE / TABLET */

@media (max-width: 900px) {

    .header-container {
        min-height: 65px;
    }

    .main-navigation,
    .header-booking {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-navigation.active {
        display: block;
    }

}


/* SMALL MOBILE  */

@media (max-width: 480px) {

    .header-container {
        width: 90%;
    }

    .site-logo img,
    .custom-logo {
        width: 42px;
        height: 42px;
    }

    .logo-text {
        font-size: 18px;
    }

}
/* MOBILE MENU ICON - OPEN STATE */

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .hero-section {
        min-height: 90vh;
    }

    .hero-content {
        margin-top: 45px;
    }

    .hero-title {
        font-size: clamp(38px, 9vw, 60px);
    }

    .hero-description {
        font-size: 15px;
    }

}


@media (max-width: 600px) {

    .hero-section {
        min-height: 85vh;
    }

    .hero-content {
        width: 88%;
        margin-top: 35px;
    }

    .hero-subtitle {
        margin-bottom: 12px;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero-title {
        font-size: clamp(34px, 10vw, 48px);

        letter-spacing: -0.5px;
    }

    .hero-description {
        margin-top: 20px;
        margin-bottom: 28px;

        font-size: 14px;
        line-height: 1.6;
    }

    .hero-button {
        padding: 12px 25px;
    }

    .hero-scroll {
        bottom: 20px;
    }

}

/* FOOTER  */

.site-footer {
    padding: 30px 0;
    background: #000;
    color: #fff;
    text-align: center;
}