/* -------------------------------------------------- */
/* Fonts                                               */
/* -------------------------------------------------- */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* -------------------------------------------------- */
/* Reset                                               */
/* -------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img,
picture,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* -------------------------------------------------- */
/* Base                                                */
/* -------------------------------------------------- */
body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222222;
    background-color: #ffffff;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
}

h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 14px;
}

h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

/* -------------------------------------------------- */
/* Header                                              */
/* -------------------------------------------------- */
.site-header {
    width: 100%;
    padding: 0;
    background-color: #ede6d8;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    min-height: 88px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    order: 1;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    order: 4;
    flex-shrink: 0;
    margin-left: 28px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2b2620;
}

.site-nav {
    flex: 1;
    order: 2;
}

.site-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 46px;
}

.site-nav li {
    position: relative;
}

.site-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: #2b2620;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #b98a5e;
}

.dropdown-arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}

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

.dropdown li {
    width: 100%;
}

.dropdown a {
    color: #123c3a;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
    padding: 10px 20px;
    border-bottom: none;
}

.dropdown a:hover {
    background-color: #f3f7f5;
}

/* -------------------------------------------------- */
/* Mega menu                                           */
/* -------------------------------------------------- */
.site-nav li.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
    pointer-events: none;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background-color: #f2efe6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    pointer-events: auto;
}

.mega-menu__body {
    display: grid;
    grid-template-columns: 36fr 64fr;
    gap: 32px;
}

.mega-menu__intro {
    min-height: 480px;
    background-color: #14210f;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    transition: background-image 0.3s ease;
}

.mega-menu__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 40px;
    min-width: 0;
}

.mega-menu__column {
    min-width: 0;
}

.mega-menu__column ul {
    display: flex;
    flex-direction: column;
}

.mega-menu__column li {
    border-bottom: 1px solid #ddd8ca;
}

.mega-menu__column li:last-child {
    border-bottom: none;
}

.mega-menu__column a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    text-transform: none;
    letter-spacing: normal;
    white-space: normal;
    font-weight: 400;
    border-bottom: none;
    min-width: 0;
}

.mega-menu__index {
    font-size: 12px;
    font-weight: 700;
    color: #c99a6c;
    padding-top: 4px;
    flex-shrink: 0;
}

.mega-menu__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.mega-menu__title {
    display: block;
    min-width: 0;
    font-size: 17px;
    font-weight: 600;
    color: #14210f;
}

.mega-menu__desc {
    display: block;
    min-width: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #7a7565;
}

/* -------------------------------------------------- */
/* Full-screen nav overlay                             */
/* -------------------------------------------------- */
.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-toggle span {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-overlay-open {
    overflow: hidden;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background-color: #ffffff;
    padding: 90px 4% 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-overlay__close {
    position: absolute;
    top: 26px;
    right: 4%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #2b2620;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2620;
}

.nav-overlay__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.nav-overlay__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-overlay__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    min-height: 260px;
    padding: 40px 24px;
    border-radius: 24px;
    color: #ffffff;
    overflow: hidden;
}

.nav-overlay__card h3 {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.nav-overlay__card p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 240px;
    opacity: 0.85;
    margin-bottom: 0;
}

.nav-overlay__card--1 { background: linear-gradient(135deg, #a8461c, #6b2a10); }
.nav-overlay__card--2 { background: linear-gradient(135deg, #b98a5e, #3f342c); }
.nav-overlay__card--3 { background: linear-gradient(135deg, #7c8268, #40412e); }
.nav-overlay__card--4 { background: linear-gradient(135deg, #35455c, #1b2431); }
.nav-overlay__card--5 { background: linear-gradient(135deg, #6b6b6b, #2b2b2b); }
.nav-overlay__card--6 { background: linear-gradient(135deg, #d9d3c6, #a49c8a); color: #2b2620; }
.nav-overlay__card--7 { background: linear-gradient(135deg, #2b2620, #14110d); }

@media (max-width: 1100px) {
    .nav-overlay__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nav-overlay {
        padding: 80px 6% 40px;
    }

    .nav-overlay__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nav-overlay__card {
        min-height: 180px;
        padding: 30px 20px;
    }
}

.mega-menu__column a:hover .mega-menu__title {
    color: #123c3a;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    order: 3;
    background-color: transparent;
    color: #2b2620;
    border: 1px solid #2b2620;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 10px 10px 24px;
    border-radius: 999px;
}

.btn-book span {
    letter-spacing: 2px;
}

.btn-book__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #2b2620;
    flex-shrink: 0;
}

.btn-book__arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* -------------------------------------------------- */
/* Main / Hero (starter placeholder)                   */
/* -------------------------------------------------- */
main {
    min-height: 70vh;
}

.hero {
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero p {
    max-width: 600px;
}

/* -------------------------------------------------- */
/* Hero slider                                         */
/* -------------------------------------------------- */
.hero-slider {
    width: 100%;
    background-color: #ede6d8;
    padding: 90px 0;
    overflow: hidden;
}

.hero-slider__inner {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 70px;
    align-items: center;
    gap: 40px;
}

.hero-slider__content {
    position: relative;
    min-height: 460px;
    overflow: hidden;
}

.hero-slider__track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-slider__slide {
    width: 33.3333%;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: visible;
}

.hero-slider__eyebrow {
    display: block;
    font-family: 'Inter', Arial, sans-serif;
    font-style: italic;
    font-size: 22px;
    color: #b98a5e;
    margin-bottom: 20px;
}

.hero-slider__heading {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 60px;
    line-height: 1.2;
    color: #2b2620;
    margin-bottom: 26px;
}

.hero-slider__desc {
    max-width: 540px;
    font-size: 18px;
    line-height: 1.7;
    color: #6b6355;
    margin-bottom: 40px;
}

.hero-slider__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px 10px 24px;
    border: 1px solid #2b2620;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2b2620;
}

.hero-slider__cta svg {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid #2b2620;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    box-sizing: border-box;
}

.hero-slider__media {
    position: relative;
    height: 620px;
}

.hero-slider__pattern {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-slider__pattern svg {
    width: 100%;
    height: 100%;
    max-width: 480px;
}

.hero-slider__photos {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-slider__photos-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slider__photo {
    width: 460px;
    max-width: 90%;
    height: 33.3333%;
    flex-shrink: 0;
    margin: 0 auto;
    background-size: cover;
    background-position: top center;
    box-sizing: border-box;
}

.hero-slider__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-self: center;
}

.hero-slider__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #cfc3a9;
    color: #2b2620;
    flex-shrink: 0;
}

.hero-slider__nav-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-slider__count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a99b7c;
}

.hero-slider__count-current {
    color: #2b2620;
    font-weight: 600;
}

.hero-slider__count-line {
    position: relative;
    width: 1px;
    height: 70px;
    background-color: #cfc3a9;
    overflow: hidden;
}

.hero-slider__count-line span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 33.33%;
    background-color: #2b2620;
    transition: height 0.8s ease;
}

@media (max-width: 900px) {
    .hero-slider {
        padding: 60px 0;
    }

    .hero-slider__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-slider__heading {
        font-size: 34px;
    }

    .hero-slider__media {
        height: 420px;
        order: -1;
    }

    .hero-slider__photo {
        width: 320px;
    }

    .hero-slider__nav {
        flex-direction: row;
        justify-self: start;
    }

    .hero-slider__count {
        flex-direction: row;
    }

    .hero-slider__count-line {
        width: 70px;
        height: 1px;
    }

    .hero-slider__count-line span {
        width: 33.33%;
        height: 100%;
        transition: width 0.8s ease;
    }
}

/* -------------------------------------------------- */
/* Benefits (Yoga & Meditation)                        */
/* -------------------------------------------------- */
.benefits {
    width: 100%;
    background-color: #faf6f0;
    padding: 100px 0;
}

.benefits__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits__eyebrow {
    display: block;
    font-size: 16px;
    color: #222222;
    margin-bottom: 8px;
}

.benefits__heading {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    color: #c19a75;
    margin-bottom: 24px;
}

.benefits__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #5c5c5c;
    max-width: 480px;
    margin-bottom: 36px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    margin-bottom: 44px;
}

.benefits__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefits__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ddc3a4;
}

.benefits__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #6b4a30;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefits__label {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
}

.benefits__cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    border: 1px solid #222222;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

.benefits__cta-arrow {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefits__media {
    position: relative;
}

.benefits__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #e5ddd1;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* -------------------------------------------------- */
/* Footer                                              */
/* -------------------------------------------------- */
.site-footer {
    width: 100%;
    padding: 30px 0;
    background-color: #f7f7f7;
    border-top: 1px solid #eaeaea;
    margin-top: 60px;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-nav ul {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 14px;
}

/* -------------------------------------------------- */
/* Responsive                                          */
/* -------------------------------------------------- */
@media (max-width: 900px) {
    .btn-book span {
        display: none;
    }

    .btn-book {
        padding: 4px;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .site-nav.is-open {
        max-height: 500px;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 5%;
    }

    .site-nav li {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #eaeaea;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 10px 0 0 16px;
        display: none;
    }

    .has-dropdown.is-open .dropdown {
        display: block;
    }

    .dropdown a {
        color: #000000;
        padding: 10px 0;
    }

    .dropdown a:hover {
        background-color: transparent;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-mega.is-open .mega-menu {
        display: block;
    }

    .mega-menu__inner {
        display: block;
        box-shadow: none;
        background-color: transparent;
    }

    .mega-menu__body {
        display: block;
    }

    .mega-menu__intro {
        display: none;
    }

    .mega-menu__columns {
        grid-template-columns: 1fr;
        padding: 10px 0 0 16px;
        gap: 10px;
    }

    .mega-menu__column li {
        border-bottom-color: #eaeaea;
    }

    .mega-menu__title {
        color: #000000;
        font-size: 15px;
    }

    .mega-menu__desc {
        color: #7a7565;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 22px;
    }

    .benefits {
        padding: 60px 0;
    }

    .benefits__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits__media {
        order: -1;
    }

    .benefits__heading {
        font-size: 34px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }
}
