.parallax-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
    pointer-events: none;
}

.gamezone-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background-image: url('../images/game-zone-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.gamezone-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    background: white;
    overflow-x: hidden;
}

.parallax-bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 1));
    pointer-events: none;
}

/* ================= MOBILE VIEW FIX ================= */
@media (max-width: 600px) {
    .gamezone-hero {
        position: relative;
        /* allow it to scroll normally */
        height: 40vh;
        /* reduce height on mobile */
        background-attachment: scroll;
        /* disable parallax on mobile for performance */
    }

    .parallax-bg::after {
        height: 10px;
        /* smaller gradient fade on mobile */
    }

    .gamezone-content {
        margin-top: 0;
        /* remove auto top margin on mobile */
    }
}

/***************************************************** Out door games  *****************************************/
/* Base section */
.gamezone-about-section {
    background: #0c0c0c;
    padding: 2rem 1rem;
    color: #fff;
    /* font-family: 'Segoe UI', sans-serif; */
    text-align: center;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 2px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 2px);
    background-size: 100px 100px;
}

/* Add top margin to the about section so it starts after hero */
.gamezone-about-section {
    margin-top: 70vh;
    position: relative;
    z-index: 2;
}

/* About text */
.about-text {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.about-text p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Section heading */
.section-heading {
    font-size: 2rem;
    margin: 3rem 0 2rem;
    color: #D1FF16;
    text-transform: uppercase;
    font-weight: bold;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Game Card */
.game-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 5px solid #adff2f;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-6px);
}

.game-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Card content */
.card-content {
    padding: 1.2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #222;
    font-weight: bold;
    text-transform: uppercase;
}

.card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
}

/* Card footer with availability and button */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.availability {
    color: #777;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.availability .arrow {
    margin-left: 4px;
    font-size: 1rem;
    transition: margin-left 0.2s ease;
}

.availability:hover .arrow {
    margin-left: 8px;
}

/* Play button */
.play-btn {
    background-color: #6a0dad;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: #5500b8;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }

    .play-btn {
        font-size: 0.85rem;
    }

    .availability {
        font-size: 0.85rem;
    }
}

/* ***************************************** Video styling ********************** */

.video-carousel-section {
    background: transparent;
    padding: 2rem 1rem 1rem;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    position: relative;
}

.video-carousel {
    max-width: 90%;
    margin: 0 auto;
}

.video-slide {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.video-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 30px;
}

/* Overlay play button */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.play-button .circle {
    width: 80px;
    height: 80px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.play-icon {
    font-size: 2rem;
    color: white;
}

.play-button p {
    margin-top: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Controls */
.carousel-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 2rem auto 0;
    gap: 1rem;
}

.carousel-dots {
    text-align: left;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff !important;
    opacity: 1;
    text-align: left;
}

.slick-dots li.slick-active button:before {
    color: #D1FF16 !important;
}

.carousel-btn {
    padding: 0.6rem 1.8rem;
    background: linear-gradient(90deg, #4700ff, #c700ff);
    color: white;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 0 12px rgba(199, 0, 255, 0.4);

}

.carousel-btn:hover {
    background: linear-gradient(90deg, #3500cc, #a000cc);
}

/* Arrows */
.carousel-arrows {
    display: flex;
    gap: 0.5rem;
}

.carousel-arrows button {
    width: 42px;
    height: 36px;
    background: transparent;
    border: 2px solid #999;
    border-radius: 20px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-arrows .custom-prev {
    border-color: #adff2f;
}

.carousel-arrows .custom-next {
    border-color: #ffffff;
}

.carousel-arrows button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff600;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-controls {
        flex-direction: column;
        text-align: center;
    }

    .carousel-dots {
        text-align: center;
    }

    .video-slide {
        border-radius: 20px;
    }

    .carousel-btn {
        font-size: 0.85rem;
    }
}


/* ************************************ CAFE VIBES ***************************** */
/* ===== Cafe Vibes Section ===== */
.cafe-vibes-section {
    position: relative;
    background: #1e1e1e;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

/* Decorative corner slashes */
.decor-top-left,
.decor-bottom-right {
    position: absolute;
    width: 200px;
    z-index: 0;
}

.decor-top-left {
    top: 0;
    left: 0;
}

.decor-bottom-right {
    bottom: 0;
    right: 0;
}

/* Image row */
.cafe-image-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.cafe-img {
    width: 300px;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    /* flex-shrink: 0; */
}

.cafe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Tilt each image */
.img-1 {
    transform: rotate(-8deg);
}

.img-2 {
    transform: rotate(0deg);
}

.img-3 {
    transform: rotate(8deg);
}

/* Headline */
.cafe-heading {
    font-size: 2.8rem;
    color: #d1ff16;
    font-weight: 900;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
}

/* About Text */
.cafe-about {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    z-index: 2;
    position: relative;
}

.cafe-about h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cafe-about p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .cafe-image-row {
        flex-direction: column;
        align-items: center;
    }

    .cafe-img {
        width: 220px;
        height: 220px;
    }

    .cafe-heading {
        font-size: 2rem;
    }

    .cafe-about h4 {
        font-size: 1.2rem;
    }
}

/* *****************************************************CEAFE VIBES SECTION  Ambieance**************************/
.cafe-vibes-ambiance {
    position: relative;
    background: #fff;
    background: #fff url('../images/snake-shape-bg.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 30px 40px;
    text-align: center;
    overflow: hidden;
}

.ambience-heading {
    font-size: 60px;
    color: #a14be3;
    font-weight: bold;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}

.ambience-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    margin: 0 10px;
}

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

#cafeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Purple Arrow */
.ambience-arrow {
    position: absolute;
    top: 40px;
    right: 150px;
    width: 60px;
    z-index: 5;
    animation: spinArrow 5s linear infinite;
}

@keyframes spinArrow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Reserve Button */
.ambience-reserve-btn {
    margin-top: 30px;
    z-index: 2;
    position: relative;
    text-align: left;
}

.reserve-now {
    padding: 12px 35px;
    background: #a14be3;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.reserve-now:hover {
    background: #822bd6;
}

/* Slick dots styling */
.slick-dots li button:before {
    font-size: 14px;
    color: #D1FF16 !important;
    /* Bright Yellow */
    opacity: 0.6;
    margin-left: -60px !important;
    margin-top: 10px !important;
}

.slick-dots li.slick-active button:before {
    color: #6a0dad !important;
    opacity: 1;
}

/* ********************************** Location section ***********/

.mochaplay-location-section {
    background: linear-gradient(135deg, #D1FF16 0%, #000000 40%, #7800E2 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: diagonalGradient 12s ease-in-out infinite;
    perspective: 1000px;
}


.location-subheading {
    color: #8b34ff;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.location-heading {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    max-width: 1000px;
    margin: 0 auto;
}

.location-heading .highlight {
    color: #d6ff3c;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.highlight-underline {
    width: 250px;
    height: 4px;
    background-color: #d6ff3c;
    margin: 20px auto 0;
}

/* Diamond Arrows */
.triangle-icon {
    position: absolute;
    top: 30%;
    width: 250px;
    opacity: 0.9;
    z-index: 2;
}

/* Left diamond animation */
.triangle-icon.left {
    left: 30px;
    animation: moveLeftDiamond 6s ease-in-out infinite alternate;
}

/* Right diamond animation */
.triangle-icon.right {
    right: 30px;
    animation: moveRightDiamond 6s ease-in-out infinite alternate;
    transform: scaleX(-1);
    /* Mirror the right one */
}

/* Keyframes */
@keyframes moveLeftDiamond {
    0% {
        left: 30px;
        transform: rotate(0deg);
    }

    100% {
        left: calc(100% - 150px);
        transform: rotate(180deg);
    }
}

@keyframes moveRightDiamond {
    0% {
        right: 30px;
        transform: scaleX(-1) rotate(0deg);
    }

    100% {
        right: calc(100% - 150px);
        transform: scaleX(-1) rotate(-180deg);
    }
}

/* ************************ Offer section ******************* */
.membership-offer-section {
    background: #f0f0f0;
    padding: 0px 52px;
    position: relative;
    overflow: hidden;
}

.curve-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 100%;
    background: url('../images/snake-shape-bg.png') no-repeat center;
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}


.membership-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    /* gap: 40px; */
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.membership-arrow img {
    width: 130px;
    transform: rotate(-45deg);
}

.membership-content {
    flex: 1;
    max-width: 600px;
}

.membership-subheading {
    font-size: 32px;
    color: #1e1e1e;
    /* margin-bottom: 10px; */
    margin-top: 20px;
}

.membership-heading {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
}

.bold-text {
    color: #2d00c2;
}

.light-text {
    color: #a02cdf;
    font-weight: 400;
    margin-left: 10px;
}

.membership-desc {
    font-size: 22px;
    color: #222;
    /* margin-top: 25px; */
    line-height: 1.6;
}

.membership-buttons {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-yellow {
    background: linear-gradient(to right, #a400ff, #4b00ff);
}

.btn-purple {
    background: linear-gradient(to right, #5100d4, #9900ff);
}

.membership-visuals {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    gap: 40px;
}

.offer-stack {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-end;
}

.offer-bar-wrapper {
    position: relative;
    text-align: center;
}

.offer-bar.stretched {
    width: 250px;
    height: 360px;
    object-fit: fill;
    display: block;
}

.offer-label {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(10%, -50%);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
}

.offer-label strong {
    font-size: 32px;
    display: block;
}

.snack-img {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-70%);
    width: 150px;
    z-index: 2;
}

.combo-visual img {
    width: 280px;
    object-fit: contain;
    margin-top: 40px;
}

/* Membership offer section and location section should be above hero */
.membership-offer-section,
.mochaplay-location-section {
    position: relative;
    z-index: 2;
}