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

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAF8;
    color: #2C2C2C;
    overflow-x: hidden;
    padding-top: 0;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: -150px;
    left: 0;
    width: 100%;
    background-color: #2C2C2C;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.8s ease, top 0s linear 0.8s;
    pointer-events: none;
}

.sticky-header.visible {
    opacity: 1;
    top: 0;
    transition: opacity 0.8s ease, top 0s linear;
    pointer-events: all;
}

.sticky-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 80px;
    max-width: 100%;
}

.sticky-nav > * {
    flex: 1;
}

.logo-text {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 0;
    text-align: left;
}

.sticky-logo {
    height: 67px;
    width: auto;
    filter: invert(1);
    transition: height 0.3s ease;
    display: block;
    margin: 0 auto;
}

.nav-link-sticky {
    text-align: right;
}

.nav-link-sticky {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-link-sticky:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 633px;
    background-image: url('https://images.unsplash.com/photo-1708577953729-40c658172d31?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NTc0OTd8&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 80px 5px 80px;
    gap: 48px;
}

.nav-left, .nav-center, .nav-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
}

.logo {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo-image {
    height: 135px;
    width: auto;
    filter: invert(1);
}

.nav-right {
    gap: 24px;
}

.nav-link {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Intro Section */
.intro-section {
    display: flex;
    width: 100%;
    gap: 60px;
    padding: 100px 120px;
}

.intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intro-image {
    width: 100%;
    height: 380px;
    background-image: url('https://images.unsplash.com/photo-1760172593349-ddfce6362843?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NTc1MTF8&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.intro-heading {
    color: #2C2C2C;
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
}

.intro-subheading {
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.intro-body, .intro-footer {
    color: #5A5A5A;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.gallery-scroll-container {
    width: 100%;
    height: 400px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.gallery-scroll-container::-webkit-scrollbar {
    display: none;
}

.gallery-row {
    display: flex;
    gap: 39px;
    height: 400px;
    padding: 0 20px;
    transition: transform 0.5s ease;
}

.gallery-img {
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.img1 {
    width: 203px;
    height: 270px;
    margin-top: 20px;
    background-image: url('https://images.unsplash.com/photo-1760899951870-cde20be7fd48?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NjExNzF8&ixlib=rb-4.1.0&q=80&w=1080');
}

.img2 {
    width: 380px;
    height: 420px;
    margin-top: 40px;
    background-image: url('https://images.unsplash.com/photo-1641890533098-fb72352b5f55?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NjExNzF8&ixlib=rb-4.1.0&q=80&w=1080');
}

.img3 {
    width: 197px;
    height: 266px;
    margin-top: 82px;
    background-image: url('https://images.unsplash.com/photo-1763485956229-a5e1396f7d3a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NjExNzJ8&ixlib=rb-4.1.0&q=80&w=1080');
}

.img4 {
    width: 287px;
    height: 392px;
    margin-top: 4px;
    background-image: url('https://images.unsplash.com/photo-1763338997133-8044829329fa?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NjExNzJ8&ixlib=rb-4.1.0&q=80&w=1080');
}

.img5 {
    width: 300px;
    height: 390px;
    margin-top: -28px;
    background-image: url('https://images.unsplash.com/photo-1635688909048-4678b8974fcc?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NjExNzN8&ixlib=rb-4.1.0&q=80&w=1080');
}

.indicators {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.indicator {
    width: 20px;
    height: 4px;
    background-color: #B8AFA0;
    border-radius: 2px;
    transition: all 0.3s;
    cursor: pointer;
}

.indicator.active {
    width: 60px;
    background-color: #2C2C2C;
}

/* Break Section */
.break-section {
    display: flex;
    width: 100%;
    padding: 80px 0;
}

.break-left {
    width: 520px;
    height: 680px;
    background-color: #B8AFA0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    gap: 24px;
}

.break-title {
    color: #FFFFFF;
    font-family: 'Instrument Serif', serif;
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
}

.break-images {
    flex: 1;
    height: 680px;
    display: flex;
    flex-direction: column;
}

.break-img1 {
    width: 100%;
    height: 340px;
    background-image: url('https://images.unsplash.com/photo-1572473515569-0a478940a1cc?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NTc1NTR8&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

.break-img2 {
    width: 100%;
    height: 340px;
    background-image: url('https://images.unsplash.com/photo-1613324061338-19d4528a5be9?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NTc1NTR8&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

/* Retreat Section */
.retreat-section {
    display: flex;
    width: 100%;
    gap: 60px;
    padding: 80px 120px;
}

.retreat-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.retreat-image1 {
    width: 100%;
    height: 320px;
    background-image: url('https://images.unsplash.com/photo-1712628837571-7c42f4c80387?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NTc1NTV8&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

.retreat-image2 {
    width: 100%;
    height: 320px;
    background-image: url('https://images.unsplash.com/photo-1722247482165-8bc3cb8af3e1?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NTc1NTV8&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

.retreat-right {
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.retreat-tag {
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.retreat-body {
    color: #5A5A5A;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.retreat-button {
    background-color: #FFFFFF;
    color: #2C2C2C;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s;
}

.retreat-button:hover {
    background-color: #2C2C2C;
    color: #FFFFFF;
}

/* Culinary Section */
.culinary-section {
    display: flex;
    width: 100%;
}

.culinary-left {
    width: 560px;
    height: 520px;
    background-color: #2C2C2C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    gap: 24px;
}

.culinary-title {
    color: #FFFFFF;
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
}

.culinary-body {
    color: #CCCCCC;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

.culinary-right {
    flex: 1;
    height: 520px;
    background-image: url('https://images.unsplash.com/photo-1573668200361-62e141908294?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA2NTc1ODV8&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
}

/* Destinations Section */
.destinations-section {
    width: 100%;
    min-height: 644px;
    background-color: #FAFAF8;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 120px;
}

.dest-title {
    color: #2C2C2C;
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    font-weight: 300;
    font-style: italic;
}

.scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.destinations-row {
    display: flex;
    gap: 60px;
    height: 360px;
    transition: transform 0.5s ease;
}

.destination-card {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
    width: 700px;
    height: 360px;
}

.card-img {
    width: 300px;
    height: 360px;
    background-size: cover;
    background-position: center;
}

.card-img1 {
    background-image: url('https://images.unsplash.com/photo-1603475429038-44361bcde123?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA3MjYzMTJ8&ixlib=rb-4.1.0&q=80&w=1080');
}

.card-img2 {
    background-image: url('https://images.unsplash.com/photo-1768190440824-aaffb4705575?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA3MjYzMTJ8&ixlib=rb-4.1.0&q=80&w=1080');
}

.card-img3 {
    background-image: url('https://images.unsplash.com/photo-1725698139391-f1b0cac13d8a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA3MjYzMjZ8&ixlib=rb-4.1.0&q=80&w=1080');
}

.card-img4 {
    background-image: url('https://images.unsplash.com/photo-1720977285360-85edb8bc79fa?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzA3MjYzMjd8&ixlib=rb-4.1.0&q=80&w=1080');
}

.card-text {
    width: 400px;
    height: 360px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.card-title {
    color: #1A1A1A;
    font-family: 'Instrument Serif', serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
}

.card-desc {
    color: #5A5A5A;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.invisible-card {
    opacity: 0;
    pointer-events: none;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0;
}

.carousel-left {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    justify-content: flex-start;
}

.carousel-middle {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-right {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    justify-content: flex-end;
}

.carousel-left:hover, .carousel-right:hover {
    opacity: 0.7;
}

.arrow-line {
    width: 150px;
    height: 4px;
    background-color: #B8AFA0;
    border-radius: 2px;
}

.arrow-head-left, .arrow-head-right {
    width: 0;
    height: 0;
    border-style: solid;
}

.arrow-head-left {
    border-width: 8px 16px 8px 0;
    border-color: transparent #B8AFA0 transparent transparent;
}

.arrow-head-right {
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #B8AFA0;
}

/* Contact Section */
.contact-section {
    display: flex;
    width: 100%;
    background-color: #B8AFA0;
    gap: 0;
    padding: 0;
    min-height: 400px;
    align-items: stretch;
}

.contact-left-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 60px 120px;
}

.contact-map {
    flex: 1;
    min-height: 400px;
    position: relative;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-title {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.contact-address, .contact-phone, .contact-email {
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

/* Footer */
.footer {
    display: flex !important;
    width: 100% !important;
    background-color: #2C2C2C !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 8px 0 !important;
    height: 55px !important;
    max-height: 55px !important;
    min-height: 55px !important;
}

.footer-right {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-right: 60px;
}

.footer-link, .social-link {
    color: #CCCCCC;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link {
    font-size: 14px;
}

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

.fb-icon {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.ig-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.ig-link {
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navigation {
        padding: 0px 40px 40px 40px;
    }

    .sticky-nav {
        padding: 40px 40px;
    }

    .intro-section, .retreat-section, .destinations-section {
        padding: 80px 60px;
    }

    .contact-left {
        padding: 60px 60px;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        height: 500px;
    }

    .navigation {
        flex-direction: row;
        padding: 0px 20px 15px 20px;
        gap: 16px;
    }

    .nav-left, .nav-center, .nav-right {
        flex: 1;
    }

    .nav-left {
        justify-content: flex-start;
    }

    .nav-center {
        justify-content: center;
    }

    .nav-right {
        justify-content: flex-end;
    }

    .logo {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .logo-image {
        height: 40px;
    }

    .nav-link {
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* Sticky Header Mobile */
    .sticky-nav {
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    .sticky-logo {
        height: 30px;
    }

    .logo-text {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .nav-link-sticky {
        font-size: 11px;
    }

    /* Intro Section Mobile */
    .intro-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .intro-image {
        height: 250px;
    }

    .intro-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .intro-subheading {
        font-size: 16px;
    }

    .intro-body, .intro-footer {
        font-size: 13px;
    }

    /* Gallery Section Mobile */
    .gallery-section {
        height: 450px;
    }

    .gallery-scroll-container {
        height: 350px;
    }

    .gallery-row {
        height: 350px;
        padding: 0 10px;
    }

    .img1, .img2, .img3, .img4, .img5 {
        transform: scale(0.8);
    }

    /* Break Section Mobile */
    .break-section {
        flex-direction: column;
        padding: 40px 0;
    }

    .break-left {
        width: 100%;
        height: 400px;
        padding: 40px 30px;
    }

    .break-images {
        width: 100%;
        height: 400px;
    }

    .break-img1, .break-img2 {
        height: 200px;
    }

    .break-title {
        font-size: 32px;
    }

    /* Retreat Section Mobile */
    .retreat-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .retreat-left {
        width: 100%;
    }

    .retreat-image1, .retreat-image2 {
        height: 250px;
    }

    .retreat-right {
        width: 100%;
    }

    .retreat-tag {
        font-size: 15px;
    }

    .retreat-body {
        font-size: 13px;
    }

    /* Culinary Section Mobile */
    .culinary-section {
        flex-direction: column;
    }

    .culinary-left {
        width: 100%;
        height: auto;
        padding: 40px 30px;
    }

    .culinary-right {
        height: 300px;
    }

    .culinary-title {
        font-size: 30px;
    }

    .culinary-body {
        font-size: 12px;
    }

    /* Destinations Section Mobile */
    .destinations-section {
        padding: 40px 20px;
        gap: 30px;
    }

    .dest-title {
        font-size: 28px;
    }

    .destination-card {
        flex-direction: column;
        width: 300px;
        height: auto;
    }

    .card-img {
        width: 300px;
        height: 200px;
    }

    .card-text {
        width: 300px;
        height: auto;
        padding: 20px 0;
    }

    .card-title {
        font-size: 24px;
    }

    .card-desc {
        font-size: 14px;
    }

    .carousel-left, .carousel-right {
        display: none;
    }

    .carousel-controls {
        justify-content: center;
    }

    .carousel-middle {
        flex: none;
    }

    /* Contact Section Mobile */
    .contact-section {
        flex-direction: column;
        padding: 0;
    }

    .contact-left-wrapper {
        width: 100%;
        order: 1;
    }

    .contact-map {
        width: 100%;
        min-height: 300px;
        order: 2;
    }

    .contact-left {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 13px;
    }

    .contact-address, .contact-phone, .contact-email {
        font-size: 12px;
    }

    /* Footer Mobile */
    .footer {
        justify-content: flex-end;
        padding: 15px 0 !important;
        height: 60px;
    }

    .footer-right {
        justify-content: flex-end;
        margin-right: 20px !important;
    }

    .footer-link {
        font-size: 10px;
    }

    .fb-icon {
        font-size: 20px;
    }

    .ig-icon {
        width: 20px;
        height: 20px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .navigation {
        padding: 0px 40px 30px 40px;
    }

    .sticky-nav {
        padding: 30px 40px;
    }

    .logo-image {
        height: 70px;
    }

    .intro-section, .retreat-section {
        padding: 60px 40px;
        gap: 40px;
    }

    .destinations-section {
        padding: 60px 40px;
    }

    .contact-left {
        padding: 40px 40px;
    }

    .destination-card {
        width: 600px;
    }

    .card-img {
        width: 250px;
    }

    .card-text {
        width: 350px;
    }
}
