.hero {
    /* height: 100vh; */
    padding: 60px 40px;
    background: linear-gradient(135deg, #D1FF16 0%, #000000 40%, #7800E2 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: diagonalGradient 12s ease-in-out infinite;
    perspective: 1000px;
    z-index: 1;
    color: white;
}

@keyframes diagonalGradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}



.hero h1 {
    font-size: 60px;
    line-height: 1.5;
    color: white;
    animation: textFade 1.5s ease-out forwards;
    opacity: 0;
    transform: translateZ(50px);
    z-index: 3;
}

/* base style for all spans */
.highlight {
    padding: 0 10px;
    border-radius: 6px;
    transition: background 0.6s ease, color 0.2s ease;
    background: transparent;
    color: #fff;
}

/* active highlight */
.highlight.active {
    background: linear-gradient(90deg, #00f, #f0f);
    color: #fff;
    font-weight: 700;
}

.hero p.subtext {
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: 1px;
    color: #ccc;
    animation: fadeIn 2.5s ease-out forwards;
    opacity: 0;
    transform: translateZ(30px);
    z-index: 3;
}

.vertical-divider {
    width: 2px;
    height: 100px;
    margin-top: 5px;
    background-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    animation: fadeIn 3s ease-out forwards;
    opacity: 0;
    transform: translateZ(30px);
    z-index: 5;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary {
    background: #8f00ff;
    color: #fff;
    border: none;
}

.btn-secondary {
    background: #111;
    color: #fff;
    border: none;
}

.floating-icon {
    position: absolute;
    width: 150px;
    height: 150px;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatAlt 4s ease-in-out infinite;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transform-style: preserve-3d;
    z-index: 4;
}

.floating-icon img {
    width: 100%;
    height: auto;
}

.game-icon {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.coffee-icon {
    top: 10%;
    right: 10%;
    animation-delay: 0.5s;
}

.ticket-icon {
    bottom: 20%;
    right: 20%;
    animation-delay: 1s;
}

.cube-left,
.cube-right {
    position: absolute;
    animation: floatOpposite 4s ease-in-out infinite;
    z-index: 0;
}

.cube-left {
    top: 20%;
    left: 5%;
    animation-direction: alternate;
}

.cube-right {
    bottom: 10%;
    right: 5%;
    animation-direction: alternate-reverse;
}

@keyframes floatOpposite {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-45px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatAlt {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/****************************************** ABOOUT US SECTION  ********************************************************************/
.section-about-bg {
    position: relative;
    overflow: hidden;
    padding: 20px 20px;
    perspective: 1200px;
    z-index: 0;

    background:
        linear-gradient(to left, #D1FF16 0%, #000000 50%, #7800E2 100%),
        url('/assets/images/about-us-bg.png');

    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

/* Flying Arrow Animation */
.flying-arrow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 150px;
    height: 150px;
    pointer-events: none;
    animation: moveArrow 20s linear infinite;
    transform-origin: center center;
}

.arrow-rotator {
    width: 100%;
    height: 100%;
    animation: spin 4s linear infinite;
}

.flying-arrow img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* Orbital Path */
@keyframes moveArrow {
    0% {
        transform: translate(5%, 0%);
    }

    20% {
        transform: translate(90vw, 10vh);
    }

    40% {
        transform: translate(95vw, 80vh);
    }

    60% {
        transform: translate(10vw, 90vh);
    }

    80% {
        transform: translate(-5vw, 10vh);
    }

    100% {
        transform: translate(5%, 0%);
    }
}

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

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

/* Main Container */
.about-container {
    display: flex;
    justify-content: space-between;
    background: #1F1F1F;
    border-radius: 16px;
    padding: 20px;
    max-width: 1200px;
    margin: 50px auto;
    gap: 30px;
    position: relative;
    z-index: 2;

    /* Initial state for GSAP */
    opacity: 0;
    transform: translateY(30px);
}

/* Left Section */
.about-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.about-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.about-title-strip {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(-60px);
}

.about-left p.about-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 95%;
    opacity: 0;
    transform: translateY(30px);
}

/* Cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.card {
    border-radius: 12px;
    padding: 20px;
    position: relative;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 130px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    z-index: 1;
    background: #fff;
}

.card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.card img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
    z-index: 1;
}

.card .arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    z-index: 2;
}

.card .subtext {
    font-size: 11px;
    margin-bottom: 4px;
    color: #111;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.card .title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-purple {
    background: #B28CFF;
    color: white;
}

.card-yellow {
    background: #D1FF16;
}

.card-white {
    background: #F1F1F1;
}

/* Right Side */
.about-right {
    flex: 1;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(50px);
}

.about-right img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/************************************************ CAFE VIBES SECTIONS ****************************************************/

.cafe-vibes-section {
    position: relative;
    background: #fff url('../images/snake-shape-bg.png') no-repeat center center;
    background-size: contain;
    text-align: center;
    overflow: visible;
}

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

.cafe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;
    gap: 40px 20px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    animation: fadeInGrid 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeInGrid {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.img-wrapper {
    width: 350px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    animation: floatWobble 8s ease-in-out infinite;
}



.img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    animation: revealImage 2s ease-out both;
}


.rotate-left {
    transform: rotate(-10deg);
}

.rotate-right {
    transform: rotate(10deg);
}

.content {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    max-width: 500px;
    z-index: 2;
    animation: zoomInText 1.2s ease-out both;
}



.arrow {
    width: 50px;
    margin-bottom: 10px;
    animation: spinArrow 5s linear infinite;
}

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

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

.title {
    font-size: 40px;
    font-weight: 800;
    color: #7800e2;
    margin-bottom: 20px;
    animation: slideFade 1.2s ease-out both;
}

.desc {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 25px;
    animation: slideFade 1.4s ease-out both;
}



.reserve-btn {
    background: #7800e2;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    animation: popIn 1.8s ease-out both;
}



.icon {
    position: absolute;
    width: 150px;
    height: auto;
    z-index: 0;
    opacity: 0.9;
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.cup-icon {
    width: 160px;
    top: 40%;
    left: 0px;
}

.shake-icon {
    width: 120px;
    top: 45%;
    right: -5px;
}


/******************************************************** === GAME ZONE SECTION CSS === ****************************************/

.gamezone-wrapper {
    position: relative;
    padding: 50px 20px;
    background-image:
        /* Grid pattern (on top) */
        linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px),

        /* Your main gradient (middle layer) */
        linear-gradient(to left, #D1FF16 0%, #000000 50%, #7800E2 100%),

        /* Background image (bottom layer) */
        url('/assets/images/about-us-bg.png');

    background-size:
        60px 60px,
        /* horizontal grid spacing */
        60px 60px,
        /* vertical grid spacing */
        cover,
        cover;

    background-position:
        center,
        center,
        center,
        center;

    background-repeat:
        repeat,
        repeat,
        no-repeat,
        no-repeat;

    /* animation: bgShift 20s ease infinite; */
    overflow: hidden;
    z-index: 1;
}

.arrow-3d {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 10;
    pointer-events: none;
}

.left-arrow {
    left: -10px;
    top: 25%;
    transform: translateY(-50%);
}

.right-arrow {
    right: -10px;
    top: 75%;
    transform: translateY(-50%);
}

.gamezone-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.gamezone-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -30px;
}

.highlight-green {
    color: #D1FF16;
}

.gamezone-subtitle {
    color: #eee;
    font-size: 18px;
    margin-bottom: 40px;
}

.gamezone-carousel {
    position: relative;
    overflow: visible !important;
    z-index: 2;
    padding: 0px 0;
}

.slick-slider {
    overflow: visible !important;
}

.slick-list {
    overflow: visible !important;
}

.slick-slide {
    padding: 0 15px;
    transform: scale(0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
    z-index: 1;
}

.slick-slide.slick-center {
    transform: scale(1.1) !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

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

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

/* === Slick Carousel Arrows === */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 45px;
    height: 45px;
    background-color: #000;
    border: 2px solid #D1FF16;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev::before,
.slick-next::before {
    font-size: 20px;
    color: #D1FF16;
    opacity: 1;
}

/* Hover effect */
.slick-prev:hover,
.slick-next:hover {
    background-color: #D1FF16;
    transform: translateY(-50%) scale(1.1);
}

.slick-prev:hover::before,
.slick-next:hover::before {
    color: #000;
}

.gamezone-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    margin: 15px;
}

.gamezone-image {
    height: 270px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 5%;
    border-radius: 10px;
}

.gamezone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid #D1FF16;
    border-radius: 10px;
}

.gamezone-caption {
    padding: 0px;
    text-align: left;
}

.gamezone-heading {
    font-size: 20px;
    font-weight: 800;
    /* margin-bottom: 10px; */
    text-transform: uppercase;
    color: #000;
    margin-top: 5px;
}

.gamezone-subtext {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.gamezone-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0px;
}

.btn-register,
.btn-explore {
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.3s ease;
    text-decoration: none;
}

.btn-register {
    background: #D1FF16;
    color: #000;
}

.btn-register:hover {
    background: #D1FF16;
}

.btn-explore {
    background: transparent;
    color: #fff;
    border: 2px solid #D1FF16;
}

.btn-explore:hover {
    background: #D1FF16;
    color: #000;
}


/*************************************************************** Events and Parties section *********************************************************/

.events-parties-section {
    background: linear-gradient(135deg, #D1FF16, #7800E2);
    padding: 50px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    perspective: 1000px;
}

.events-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: fadeInContainer 2s ease-out forwards;
}

@keyframes fadeInContainer {
    0% {
        opacity: 0;
        transform: scale(0.95) rotateX(10deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
    }
}

.events-images-left,
.events-images-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 250px;
    align-items: center;
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(60px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.events-row {
    display: flex;
    gap: 20px;
}

.events-img {
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.events-img:hover {
    transform: rotateY(10deg) scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.img-lg {
    width: 100%;
    height: 300px;
}

.img-sm {
    width: 100%;
    height: 150px;
}

.events-content {
    flex: 1;
    text-align: center;
    padding: 0 30px;
    position: relative;
    animation: zoomInText 1.4s ease-in-out both;
}

@keyframes zoomInText {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.events-tagline {
    font-size: 20px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-in-out both;
}

.events-heading {
    font-size: 60px;
    font-weight: 700;
    color: #D1FF16;
    line-height: 1;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-in-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.reserve-button {
    background: #6E00FF;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
    animation: fadeInUp 1s ease-in-out 1s both;
}

.reserve-button:hover {
    background: #5100bb;
    transform: scale(1.05);
}

.arrow {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 1;
    /* animation: arrowFloatOrbit 8s ease-in-out infinite; */
    transform-origin: center center;
    will-change: transform;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
    z-index: 5;
}

/* @keyframes arrowFloatOrbit {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(20px, -10px) rotate(10deg) scale(1.05);
    }

    50% {
        transform: translate(0px, -20px) rotate(0deg) scale(1);
    }

    75% {
        transform: translate(-20px, -10px) rotate(-10deg) scale(1.05);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
} */

.arrow-left {
    left: 15%;
    top: 48%;
}

.arrow-right {
    right: 15%;
    bottom: 12%;
}

/*************************************************************** 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;
}

/**************************************************************** Party Hall Section **********************************/
.party-hall-carousel-section {
    background: url(../images/part-hall-bg.png) no-repeat center center / cover;
    /* padding: 25px 40px 80px; */
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
}


.party-hall-overlay {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.party-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.party-title span {
    color: #8f00ff;
}

.party-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #f1f1f1;
}

/* Hall Card */
.party-hall-carousel .hall-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 8px;
    transition: all 0.3s ease-in-out;
}

.party-hall-carousel .hall-card:hover {
    transform: translateY(-8px);
}

.hall-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.hall-card h3 {
    color: #6200ff;
    margin-top: 5px;
    font-size: 20px;
    font-weight: 700;
}

/* CTA Button */
.party-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    font-weight: 600;
    background: #8f00ff;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.party-btn:hover {
    background: #5f00cc;
}


/* ******************************* LOCATION SECTION *************************** */

.mochaplay-location-section {
    background: linear-gradient(135deg, #D1FF16 0%, #000000 40%, #7800E2 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    padding: 60px 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: #D1FF16;
    font-weight: 700;
    display: inline-block;
    position: relative;


}

.highlight-underline {
    width: 250px;
    height: 4px;
    background-color: #D1FF16;
    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);
    }
}