/* =========================================
   FIX VIDEO GOING BEHIND NAVBAR
========================================= */
.experience-hero {
    margin-top: 60px;
    /* Desktop navbar height */
}

/* If navbar is smaller on mobile */
@media (max-width: 768px) {
    .experience-hero {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .experience-hero {
        margin-top: 50px;
    }
}

/* =========================================
   Disable Default Controls
========================================= */
video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

/* =========================================
   VIDEO WRAPPER
========================================= */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen */
    overflow: hidden;
}

.experience-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   CUSTOM PLAY BUTTON
========================================= */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    border-radius: 50%;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.2s ease-in-out;
}

.play-btn svg {
    width: 150px;
    height: 150px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

/* =========================================
   MUTE BUTTON
========================================= */
.mute-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    
    transition: all 0.3s ease;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mute-btn i {
    pointer-events: none;
}

@media (max-width: 768px) {
    .mute-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* ================================
   OASIS SECTION MAIN STYLES
================================ */
.oasis-section {
    width: 100%;
    padding: 60px 0 100px;
    background: #ffffff;
    text-align: center;
    font-family: 'Georgia', serif;
}

/* TEXT CENTER AREA */
.oasis-text h2 {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.oasis-text p {
    font-size: 20px;
    color: #3d3d3d;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON */
.oasis-btn {
    display: inline-block;
    background: #c86d53;
    color: white;
    padding: 10px 26px;
    border-radius: 25px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.oasis-btn:hover {
    transform: scale(1.05);
}

/* ================================
   IMAGE COLLAGE LAYOUT
================================ */
.oasis-images {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;

}

/* INITIAL IMAGE STATE (ANIMATION START) */
.oasis-img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 8px;

    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.oasis-img:nth-child(1) {
    height: 450px;
}

.oasis-img:nth-child(2) {
    height: 360px;
}

.oasis-img:nth-child(3) {
    height: 380px;
}

.oasis-img:nth-child(4) {
    height: 360px;
}

.oasis-img:nth-child(5) {
    height: 400px;
}

/* WHEN VISIBLE */
.oasis-img.show {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGER EFFECT – EACH IMAGE HAS A DELAY */
.oasis-img:nth-child(1) {
    transition-delay: 0.1s;
}

.oasis-img:nth-child(2) {
    transition-delay: 0.3s;
}

.oasis-img:nth-child(3) {
    transition-delay: 0.5s;
}

.oasis-img:nth-child(4) {
    transition-delay: 0.7s;
}

.oasis-img:nth-child(5) {
    transition-delay: 0.9s;
}


/* MAIN SECTION */
.food-family-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen like screenshot */
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.food-bg {
    background-image: url("../images/ex1.png");
    /* Change this */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* TOP–DOWN WHITE GRADIENT OVERLAY */
.food-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            rgba(255, 255, 255, 0.6) 20%,
            transparent 50%);
}

/* BLUR GLASS CARD IN CENTER */
.food-card {
    position: absolute;
    bottom: 15%;
    /* same alignment as screenshot */
    left: 50%;
    transform: translateX(-50%);

    width: 60%;
    max-width: 700px;
    padding: 35px 45px;
    background-color: rgba(16, 10, 10, 0.331);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    text-align: center;

    color: #fff;
    font-family: "Georgia", serif;
}

/* TEXT STYLING */
.food-card h2 {
    font-size: 42px;
    font-weight: lighter;
    margin-bottom: 20px;
}

.food-card p {
    font-size: 20px;
    line-height: 1.2;
    font-weight: lighter;
}



.amenities-section {
    width: 100%;
    background: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.amenities-title {
    font-family: "Georgia", serif;
    font-size: 42px;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: lighter;
}

.amenities-subtitle {
    font-size: 20px;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 70px;
    color: #444;
    line-height: 26px;
    font-family: "Georgia", serif;
}

/* ***** 3-COLUMN GRID ***** */

.amenities-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 40px;
}

.amenity-card {
    width: 28%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ***** HOVER OVERLAY ***** */

.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(228, 122, 87, 0.913), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    transition: 0.4s ease;
}

.amenity-overlay p {
    color: rgb(255, 255, 255);
    font-size: 28px;
    font-family: "Georgia", serif;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
    letter-spacing: 1px;
}

.amenity-card:hover .amenity-overlay {
    opacity: 1;
}

.amenity-card:hover .amenity-overlay p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 769px) {

    .mobile-br-hide {
        display: none;
    }

    .amenities-section {
        padding: 36px 18px;
        background: #ffffff;
    }

    /* HEADING */
    .amenities-title {
        font-family: Georgia, serif;
        font-size: 30px;
        font-weight: 500;
        color: #2e2e2e;
        margin-bottom: 20px;
        text-align: left;
        margin-top: 50px;
    }

    /* SUBTITLE */
    .amenities-subtitle {
        font-size: 16px;
        width: 100%;
        line-height: 1.6;
        margin: 0%;
        color: #4a4a4a;
        margin-bottom: 24px;
        text-align: left;
    }

    .cta-btn {
        display: none;
    }

    /* GRID → STACK */
    .amenities-grid {
        display: flex;
        flex-direction: column;
        padding: 10px 10px;
        gap: 18px;
    }

    /* CARD */
    .amenity-card {
        position: relative;
        border-radius: 2px;
        overflow: hidden;
        width: 100%;
        height: 320px;
    }

    .amenity-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    /* TEXT OVER IMAGE (BOTTOM LEFT) */
    .amenity-overlay {
        opacity: 1;
        height: auto;
        background: none;
        padding-bottom: 0;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 12px;
    }

    .amenity-overlay p {
        opacity: 1;
        transform: none;
        font-size: 20px;
        color: #ffffff;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    }

    /* MOBILE: disable hover effect */
    .amenity-card:hover .amenity-overlay,
    .amenity-card:hover .amenity-overlay p {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {

    .amenity-card {
        position: relative;
        border-radius: 2px;
        overflow: hidden;
        width: 100%;
        height: 200px;
    }

    .amenity-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    /* TEXT OVER IMAGE (BOTTOM LEFT) */
    .amenity-overlay {
        opacity: 1;
        height: auto;
        background: none;
        padding-bottom: 0;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 1px 20px;
    }
}

@media (max-width: 380px) {

    .amenity-card {
        position: relative;
        border-radius: 2px;
        overflow: hidden;
        width: 100%;
        height: 180px;
    }

    .amenity-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    /* TEXT OVER IMAGE (BOTTOM LEFT) */
    .amenity-overlay {
        opacity: 1;
        height: auto;
        background: none;
        padding-bottom: 0;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 1px 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {

    /* SECTION */
    .amenities-section {
        padding: 70px 40px;
        background: #ffffff;
        text-align: center;
    }

    /* TITLE */
    .amenities-title {
        font-family: Georgia, serif;
        font-size: 42px;
        font-weight: 500;
        color: #2e2e2e;
        margin-bottom: 14px;
        margin-top: 50px;
    }

    /* SUBTITLE */
    .amenities-subtitle {
        font-size: 20px;
        line-height: 1.6;
        color: #4a4a4a;
        max-width: 640px;
        margin: 0 auto 28px;
        margin-bottom: 50px;
    }

    /* CTA BUTTON */
    .cta-btn {
        display: inline-block;
        padding: 11px 26px;
        font-size: 14px;
        border-radius: 26px;
        margin-bottom: 42px;
    }

    /* GRID */
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        align-items: stretch;
    }

    /* CARD */
    .amenity-card {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
    }

    .amenity-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    /* OVERLAY (tablet pe hover allowed) */
    .amenity-overlay {
        padding-bottom: 18px;
    }

    .amenity-overlay p {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

}


/* EXPLORE SECTION - COLLAGE LAYOUT */
.explore-section {
    width: 100%;
    background: #fdfaf6;
    padding: 100px 0;
    font-family: "Georgia", serif;
    overflow: hidden;
}

.explore-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.explore-text {
    margin-bottom: 50px;
    padding: 0 4vw; /* Keep text aligned within viewport */
}

.explore-text h2 {
    font-size: 42px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.explore-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    max-width: 500px;
}

/* Collage Container */
.explore-collage {
    position: relative;
    width: 100%;
    height: 600px; /* Base height for desktops */
    margin-top: 20px;
}

.collage-item {
    position: absolute;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.collage-item.show {
    opacity: 1;
    transform: translateX(0);
}

.collage-item img {
    width: 90%;
    height: 90%;
    display: block;
}

.collage-caption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: 18px;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); */
    pointer-events: none;
}

/* Positioning for each item to match design with 100% width coverage */
/* Positioning for each item to match design with 100% width coverage */
.item1 {
    width: 28vw;
    height: 550px;
    left: -1vw;
    top: 60px;
    z-index: 4; /* Top-most as it appears last */
    transition-delay: 0.8s;
}

.item2 {
    width: 28vw;
    height: 320px;
    left: 20vw;
    top: 120px;
    z-index: 3;
    transition-delay: 0.6s;
}

.item3 {
    width: 25vw;
    height: 480px;
    left: 43vw;
    top: 80px;
    z-index: 2;
    transition-delay: 0.4s;
}

.item4 {
    width: 40vw; /* Reduced from 45vw to prevent clipping (59+40=99vw) */
    height: 450px;
    left: 63vw;
    top: 0;
    z-index: 1; /* Lowest as it appears first */
    transition-delay: 0.2s;
}

.collage-item:hover {
    transform: scale(1.05);
    z-index: 10 !important;
}

.collage-label {
    display: none; /* Hidden on desktop by default */
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .explore-collage {
        height: 500px;
    }
    .item1 { width: 30vw; height: 400px; }
    .item2 { width: 30vw; height: 220px; left: 20vw; }
    .item3 { width: 30vw; height: 350px; left: 40vw; }
    .item4 { width: 40vw; height: 320px; left: 60vw; }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 50px 0;
    }
    .explore-container {
        padding: 0;
    }
    .explore-text h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .explore-text p {
        font-size: 16px;
    }
    .explore-collage {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        height: auto;
        overflow-x: auto;
        padding: 0 20px 20px 20px;
        gap: 15px;
        margin-top: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        margin-left: 20px;
    }
    
    .explore-collage::-webkit-scrollbar {
        display: none; /* Hide scrollbar */
    }

    .collage-item {
        position: relative;
        flex: 0 0 280px; /* Fixed width for card */
        height: auto; /* Allow content to dictate height */
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none;
        background: transparent;
        scroll-snap-align: start;
        border-radius: 0;
    }

    .collage-item img {
        width: 100%;
        height: 320px; /* Increased height */
        border-radius: 4px;
        object-fit: fill;
    }

    .collage-label {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        color: #6d755b; /* Muted greenish brown from design */
        font-size: 16px;
        font-family: inherit;
    }

    .collage-label svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    /* Hide the absolute captions used on desktop */
    .collage-caption {
        display: none;
    }
    
}

@media (max-width: 600px) {
    /* Ensure the tall height is maintained on small phones */
    .collage-item {
        width: 280px; /* Keep consistent with horizontal scroll */
        height: 450px;
    }
}



.spotlight-section {
    display: grid;
    grid-template-columns: 62% 38%;
    padding: 80px 120px;
    gap: 80px;
    background: #ffffff;
    font-family: "Georgia", serif;
}

/* LEFT SIDE */
.spotlight-title {
    font-size: 42px;
    color: #4b3621;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: lighter
}

.spotlight-card {
    position: relative;
    width: 100%;
}

.spotlight-img {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    object-fit: cover;
}

.latest-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

.spotlight-heading {
    font-size: 35px;
    font-weight: lighter;
    margin-top: 35px;
    color: #2d2d2d;
}

/* AUTHOR BOX */
.author-box {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.author-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.author-name {
    font-size: 16px;
    color: #3d3d3d;
}


/* RIGHT SIDE — TRENDING */
.trending-title {
    font-size: 42px;
    font-weight: lighter;
    color: #4b3621;
    font-style: italic;
    margin-bottom: 40px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 25px 0;
    text-decoration: none;
}

.trend-img {
    width: 110px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.trend-text {
    font-size: 16px;
    color: #2d2d2d;
    line-height: 1.5;
    max-width: 260px;
    font-style: normal;
}

.divider {
    width: 100%;
    height: 1px;
    background: #d8d2cb;
    margin: 20px 0;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .spotlight-section {
        grid-template-columns: 1fr;
        padding: 50px 40px;
    }

    .trending-right {
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .spotlight-img {
        height: 300px;
    }

    .spotlight-heading {
        font-size: 20px;
    }

    .trend-img {
        width: 90px;
        height: 65px;
    }
}


/* RESPONSIVE GRID */
@media (max-width: 992px) {
    .explore-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .explore-images {
        grid-template-columns: 1fr;
    }
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .spotlight-title, .trending-title {
        font-size: 30px !important;
    }
    
    .food-card {
        width: 80%;
        padding: 25px;
        bottom: 10%;
    }

    .food-card h2 {
        font-size: 24px;
    }

    .food-card p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .food-card {
        width: 90%;
        padding: 20px;
        bottom: 8%;
    }

    .food-card h2 {
        font-size: 30px;
    }

    .food-card p {
        font-size: 16px;
    }
}


/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .oasis-images {
        gap: 10px;
        grid-template-columns: repeat(5, 1fr);
        padding-left: 120px;
        padding-right: 20px;
    }

    .oasis-img {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .oasis-text h2 {
        font-size: 30px;
    }

    .oasis-img {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .oasis-text p {
        font-size: 16px;
    }

    .oasis-img {
        width: 160px;
    }
    .oasis-img:nth-child(1) {
    height: 250px;
    }
    
    .oasis-img:nth-child(2) {
        height: 160px;
    }
    
    .oasis-img:nth-child(3) {
        height: 180px;
    }
    
    .oasis-img:nth-child(4) {
        height: 160px;
    }
    
    .oasis-img:nth-child(5) {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .explore-text {
        margin: 55px 10px;
    }
}

@media (max-width: 768px) {
    .explore-text {
        margin: 55px 10px;
    }
}

/* =========================================
   RESPONSIVE PLAY BUTTON ADJUSTMENTS
========================================= */

/* -------- Tablet -------- */
@media (max-width: 1024px) {
    .video-wrapper {
        height: 80vh;
    }

    .play-btn svg {
        width: 120px;
        height: 120px;
    }
}

/* -------- Mobile (big) -------- */
@media (max-width: 768px) {
    .video-wrapper {
        height: 70vh;
    }

    .play-btn svg {
        width: 90px;
        height: 90px;
    }
}

/* -------- Mobile (small) -------- */
@media (max-width: 480px) {
    .video-wrapper {
        height: 60vh;
    }

    .play-btn svg {
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 1561px) {
  /* Oasis Section */
  .oasis-text h2 { font-size: 42px; }
  .oasis-text p { font-size: 20px; }
  .oasis-img:nth-child(1) { height: 650px; }
  .oasis-img:nth-child(2) { height: 550px; }
  .oasis-img:nth-child(3) { height: 570px; }
  .oasis-img:nth-child(4) { height: 550px; }
  .oasis-img:nth-child(5) { height: 600px; }
 
  .spotlight-img {
    width: 100%;
    height: 620px;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Food Section */
  .food-card h2 { font-size: 42px; }
  .food-card p { font-size: 20px; }

  /* Amenities Section */
  .amenities-title { font-size: 42px; margin-top: 50px; }
  .amenities-subtitle { font-size: 20px; margin-bottom: 50px; }
  .amenity-card { height: 650px; }
  .amenity-overlay p { font-size: 42px; }

  /* Explore Section */
  .explore-text h2 { font-size: 42px; }
  .explore-text p { font-size: 20px; }
  .explore-collage { 
    height: 900px;
    margin-top: 40px;
  }
  .item1 { width: 25vw; height: 800px; left: 0vw; top: 60px; }
  .item2 { width: 30vw; height: 450px; left: 20vw; top: 180px; }
  .item3 { width: 30vw; height: 700px; left: 40vw; top: 120px; }
  .item4 { width: 45vw; height: 650px; left: 60vw; top: 0; }
  .collage-caption { font-size: 28px; }

  /* Spotlight & Trending */
  .spotlight-title, .trending-title { font-size: 42px; }
  .spotlight-heading { font-size: 42px; }
  .trend-img { width: 180px; height: 130px; }
  .trend-text { font-size: 24px; max-width: 450px; }
  .author-name { font-size: 22px; }
}
