:root {
    --accent: #ff2d95;
    --neon: #0ff;
    --muted: #9aa4b2;
    --bg: #000;
}

/* ================= GENERAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #000;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #ff0099;
}

a:hover {
    color: #ff66c4;
}

h2 {
    color: #ff0099;
    animation: pulse 2.5s infinite;
}

.btn {
    background: #ff0099;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
    animation: pulse 3s infinite;
}

.btn:hover {
    background: #ff66c4;
    transform: scale(1.05);
}

@keyframes pulse {

    0%,
    100% {
        text-shadow: 0 0 10px var(--neon), 0 0 20px var(--neon), 0 0 30px var(--neon);
    }

    50% {
        text-shadow: 0 0 20px rgb(0, 255, 255), 0 0 40px rgb(0, 255, 255), 0 0 60px rgb(0, 255, 255);
    }
}

/* ================= NAVBAR ================= */
#navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100;
    padding: 10px 0;
    padding-right: 25px;
    padding-left: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--neon);
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #ff0099, 0 0 20px #ff66c4;
}

#navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 10px;

}

#navbar ul li a {
    font-weight: 600;
    color: var(--neon);
    text-shadow: 0 0 15px var(--neon), 0 0 30px var(--neon);
    animation: flicker 3s infinite alternate
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--neon);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon), 0 0 20px var(--neon);
    animation: flicker 3s infinite alternate
}

.brand {
    margin-top: -8px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--neon);
    text-shadow: 0 0 15px var(--neon), 0 0 30px var(--neon);
    animation: flicker 3s infinite alternate
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1
    }

    20%,
    24%,
    55% {
        opacity: 0.3
    }
}

/* ================= HEADER ================= */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--neon);
    overflow: hidden;
}

/* HERO BACKGROUND */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: brightness(0.3);
}

/* Create a zooming background layer */
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('resourse/bg1.jpg') center/cover no-repeat;
    animation: zoomCycle 30s ease-in-out infinite;
    transition: background-image 10s ease-in-out;
    transform-origin: center;
    z-index: -1;
}

/* Keyframes: smooth zoom-in + image changes */
@keyframes zoomCycle {
    0% {
        transform: scale(1);
        background-image: url('resourse/bg1.jpg');
    }

    25% {
        transform: scale(1.1);
        background-image: url('resourse/bg1.jpg');
    }

    26% {
        background-image: url('resourse/bg2.jpg');
    }

    50% {
        transform: scale(1);
        background-image: url('resourse/bg2.jpg');
    }

    75% {
        transform: scale(1.1);
        background-image: url('resourse/bg3.jpg');
    }

    76% {
        background-image: url('resourse/bg3.jpg');
    }

    100% {
        transform: scale(1);
        background-image: url('resourse/bg1.jpg');
    }
}


/* Light beam */
.light-beam {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 5px;
    height: 200%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-50%) rotate(20deg);
    animation: moveBeam 10s linear infinite;
    z-index: 1;
}

@keyframes moveBeam {
    0% {
        left: 0;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 0;
    }
}

@keyframes parallax {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.2) translateY(-20px);
    }
}



/* Particle canvas */
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 3s ease;
}

.Hoo {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--neon), 0 0 40px var(--neon);
    animation: neonText 2s ease-in-out infinite alternate;
}

.hero p {
    color: white;
    font-size: 1.2rem;
    margin-top: 10px;
}

.hero button {
    margin-top: 20px;
    padding: 14px 28px;
    border: none;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff0099, #00ffff);
    box-shadow: 0 0 15px rgba(255, 0, 153, 0.6),
        0 0 30px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

/* Glow and color shift on hover */
.hero button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 0, 153, 0.9),
        0 0 45px rgba(0, 255, 255, 0.8);
    background: linear-gradient(135deg, #00ffff, #ff0099);
}

/* Animated border light flow */
.hero button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #ff00cc, #00ffff, #ff00cc);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    animation: glowBorder 4s linear infinite;
}

/* Shimmer overlay on text */
.hero button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

/* Animations */
@keyframes glowBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes shimmer {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes neonText {
    0% {
        text-shadow: 0 0 10px var(--neon);
    }

    100% {
        text-shadow: 0 0 40px var(--neon), 0 0 80px var(--neon);
    }
}

/* ================= SECTIONS ================= */
section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon);
    animation: pulse 2.5s infinite;
}

.contact {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--neon);
    animation: pulse 2.5s infinite;
}

.contacth3 {
    font-size: 1.5rem;

}

section p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}



/* Offer card */
.offer-card {
    position: relative;
    border-radius: 12px;
    transition: 0.3s;



    height: 430px;
    width: auto;
    cursor: pointer;
    /* Full width */
    box-sizing: border-box;
    /* Optional: add overlay color for better text readability */
    margin: 10px;

}

/* Image itself (auto width from aspect ratio) */
.offer-card img {
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    border: 2px solid transparent;
    border-color: #ff0099;
    box-shadow: 0 0 20px #ff0099;
    transition: transform 1.5s ease, filter 0.6s ease;


}

/* Overlay text */
.offer-card .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff77ff;
    text-shadow: 0 0 2px #ff00ff, 0 0 5px #ff00ff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

/* Hover effect */
.offer-card:hover img,
.offer-card:active img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.offer-card:hover .overlay-text,
.offer-card:active .overlay-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}





/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    cursor: pointer;

}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
    border-radius: 15px;
    border: 2px solid transparent;
    border-color: #ff0099;
    box-shadow: 0 0 20px #ff0099;
    transition: transform 1.5s ease, filter 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #ff77ff;
    text-shadow: 0 0 2px #ff00ff, 0 0 5px #ff00ff;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 1;
}


#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#lightbox-media-container {
    max-width: 90%;
    max-height: 80%;
}

#lightbox img,
#lightbox video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 20px #ff0099;
}

#close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

#close-lightbox:hover {
    color: #ff0099;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: none;
    font-size: 40px;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    z-index: 10000;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--neon);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon);
    transition: 0.3s;
    animation: flicker 3s infinite alternate;
}

.music-control:hover {
    transform: scale(1.1)
}

.music-control svg {
    fill: var(--accent);
    width: 30px;
    height: 30px
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1
    }

    20%,
    24%,
    55% {
        opacity: 0.3
    }
}


/* ================= BACK TO TOP ================= */
#back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ff0099;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 15px var(--neon), 0 0 30px var(--neon);
    display: none;
    z-index: 999;
    transition: 0.3s;
    animation: pulse 3s infinite;
}

#back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--neon), 0 0 60px var(--neon);
}

/* ================= NEON CANVAS ================= */
#neon-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-content {
    display: flex;
    /* vertically center text and image */
    justify-content: center;
    /* paragraph on left, image on right */
    gap: 20px;
    /* space between text and image */
    flex-wrap: nowrap;
    /* prevents stacking */
}

.about-content img {
    width: 300px;
    /* adjust as needed */
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
    /* prevents image from shrinking */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 30px #ff0099;
}

.about-content p {
    max-width: 600px;
    /* adjust according to image width + gap */
    text-align: left;
    margin: 20px;
    font-size: 1.2rem;
    font-weight: 400;
}

.firstletter {
    font-size: 25px;
}

.highlight {
    font-weight: 600;
    text-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
    animation: aboutText 2s ease-in-out infinite alternate;
}

@keyframes aboutText {
    0% {
        text-shadow: 0 0 10px var(--accent);
    }

    100% {
        text-shadow: 0 0 40px var(--accent), 0 0 80px var(--accent);
    }
}

/* Events */
.events {
    display: grid;
    gap: 30px;
    margin: 50px;
    justify-content: center;
}

.event-card-landscape {
    border-radius: 12px;
    transition: 0.3s;



    height: 430px;
    width: auto;
    cursor: pointer;
    /* Full width */
    box-sizing: border-box;
    /* Optional: add overlay color for better text readability */
    margin: 10px;
    margin-bottom: 50px;


}

.event-background {

    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    border: 2px solid transparent;
    border-color: #ff0099;
    box-shadow: 0 0 20px #ff0099;

}

.event-wrapper {
    position: relative;
    height: 100%;

}

.buy-btn {

    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);

    padding: 14px 28px;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;

    background: linear-gradient(135deg, #ff0099, #00ffff);
    box-shadow:
        0 0 15px rgba(255, 0, 153, 0.6),
        0 0 30px rgba(0, 255, 255, 0.4);

    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

/* Hover effect */
.buy-btn:hover {
    transform: translateX(-50%) scale(1.08);
    background: linear-gradient(135deg, #00ffff, #ff0099);
    box-shadow:
        0 0 25px rgba(255, 0, 153, 0.9),
        0 0 45px rgba(0, 255, 255, 0.8);
}

/* Animated border glow */
.buy-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(135deg, #ff00cc, #00ffff, #ff00cc);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    animation: glowBorder 4s linear infinite;
}

/* Shimmer effect */
.buy-btn::after {
    content: '';
    position: absolute;
    top: 0;

    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes glowBorder {
    0% {
        background-position: 0% 100%;
    }
}

@keyframes shimmer {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}


/* ===== NEON FOOTER ===== */
footer {
    background: #111;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    color: #ff00ff;
    /* Neon pink default */
    font-family: 'Arial', sans-serif;
}

.footerimg {
    margin-bottom: 20px;
    height: 200px;
    width: 200px;
    filter: drop-shadow(0 0 15px #ff00ff) drop-shadow(0 0 30px #ff0099);
    transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}

footer a {
    margin: 12px 0;

    color: #ff77ff;
    text-shadow: 0 0 2px #ff00ff, 0 0 5px #ff00ff;
}

/* Neon animated social links */

footer .social-links a {
    display: inline-block;
    margin: 0 12px;
    transition: transform 0.3s, filter 0.3s;
}

footer .social-links a img {
    margin-top: 15px;
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 15px #ff00ff) drop-shadow(0 0 30px #ff0099);
    transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}

footer .social-links a:hover img {
    transform: scale(1.3) rotate(-10deg);
    filter: drop-shadow(0 0 15px #ff00ff) drop-shadow(0 0 30px #ff0099);
}

/* Footer copyright neon glow */
footer a:last-child {
    margin-top: 20px;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff0099;
    font-size: 0.9rem;
}

/* Optional: subtle flicker animation for neon effect */
@keyframes flicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    22%,
    24%,
    55% {
        opacity: 0.4;
    }
}

.footerimg,
footer h2,
footer a,
footer .social-links a img {
    animation: flicker 2s infinite;
}

/* ================= MEDIA ================= */
@media(max-width:768px) {
    .menu-toggle {
        display: flex;
    }

    #navbar {
        padding-right: 0px;
        padding-left: 0px;
    }

    #navbar ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.5s ease;
        z-index: 999;
    }

    #navbar ul.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero button {
        padding: 10px 20px;
        font-size: 14px;
    }

    section h2 {
        font-size: 2rem;
    }

    .about-content {
        display: block;
    }

    .about-content p {
        max-width: 600px;
        /* adjust according to image width + gap */
        text-align: center;
        margin: 20px;
    }

    .about-content img {
        width: 300px;
        /* adjust as needed */
        height: auto;
        border-radius: 10px;
        flex-shrink: 0;
        /* prevents image from shrinking */
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 0 30px #ff0099;
    }


    .events {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-card {
        position: relative;
        border-radius: 12px;
        transition: 0.3s;




        height: 300px;
        width: auto;
        cursor: pointer;
        /* Full width */
        box-sizing: border-box;
        /* Optional: add overlay color for better text readability */
        margin: 10px;

    }

    .offer-card img {
        /* Replace with your image path */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100%;
        width: 100%;
        border-radius: 12px;
        border: 2px solid transparent;
        border-color: #ff0099;
        box-shadow: 0 0 20px #ff0099;
        transition: transform 1.5s ease, filter 0.6s ease;


    }

    .offer-card .overlay-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ff77ff;
        text-shadow: 0 0 2px #ff00ff, 0 0 5px #ff00ff;
        font-size: 0.9rem;
        font-weight: 600;
        text-align: center;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
        z-index: 1;
        pointer-events: none;
    }

    .event-card-landscape {
        border-radius: 12px;
        transition: 0.3s;
        margin-bottom: 25px;




        height: 300px;
        width: auto;
        cursor: pointer;
        /* Full width */
        box-sizing: border-box;
        /* Optional: add overlay color for better text readability */
        margin: 10px;

    }

    .event-background {

        /* Replace with your image path */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100%;
        width: 100%;
        border-radius: 12px;
        border: 2px solid transparent;
        border-color: #ff0099;
        box-shadow: 0 0 20px #ff0099;

    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footerpadding {
        padding-bottom: 90px;
    }
}

/* ================= LIGHTBOX2 ================= */
#lightbox2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox2-img {
    max-width: 90%;
    max-height: 80%;
    border: 5px solid #ff0099;
    border-radius: 15px;
    box-shadow: 0 0 30px #ff0099, 0 0 60px #ff66c4;
}

#close-lightbox2 {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #ff0099;
    cursor: pointer;
}


/* === PARTY INQUIRY BUTTON === */
.party-btn {
    background: #ff0099;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 0 20px #ff0099;
    transition: 0.3s;
}

.party-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px #ff0099;
}

/* === PARTY POPUP === */
.party-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.party-modal-content {
    background: rgba(255, 0, 153, 0.1);
    border: 2px solid #ff0099;
    box-shadow: 0 0 30px #ff0099;
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    animation: fadeIn 0.4s ease;
    position: relative;
    color: white;
}

.party-modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff0099;
}

.party-modal-content label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

.party-modal-content input,
.party-modal-content select,
.party-modal-content textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    margin-top: 6px;
    box-sizing: border-box;
    font-size: 12px;
}

.party-modal-content .submit-btn {
    margin-top: 20px;
    background: #ff0099;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    width: 100%;
}

.party-modal-content .submit-btn:hover {
    box-shadow: 0 0 20px #ff0099;
    transform: scale(1.05);
}

/* Close button */
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.close-modal:hover {
    color: #ff0099;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.inquiry-control {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 200;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--neon);
    border-radius: 30px;
    padding: 10px 20px;
    color: var(--accent);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon);
    transition: all 0.3s ease;

    /* Entrance animation */
    opacity: 0;
    transform: translateY(40px);
    animation:
        slideUp 0.8s ease-out 0.5s forwards,
        pulseGlow 3s ease-in-out infinite 1.5s;
    /* pulsing glow after slide */
}

.inquiry-control:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--neon);
    background: rgba(0, 0, 0, 0.9);
}

.inquiry-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

/* Slide-up animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gentle pulsing neon glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px var(--neon), 0 0 20px var(--neon);
    }

    50% {
        box-shadow: 0 0 25px var(--neon), 0 0 40px var(--neon);
    }
}

@media(max-width:440px) {
    .offer-card {
        position: relative;
        border-radius: 12px;
        transition: 0.3s;




        height: 200px;
        width: 100%;
        cursor: pointer;
        /* Full width */
        box-sizing: border-box;
        /* Optional: add overlay color for better text readability */
        margin: 10px;

    }

    .offer-card img {
        /* Replace with your image path */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100%;
        width: auto;
        border-radius: 12px;
        border: 2px solid transparent;
        border-color: #ff0099;
        box-shadow: 0 0 20px #ff0099;
        transition: transform 1.5s ease, filter 0.6s ease;


    }


    .offer-card .overlay-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ff77ff;
        text-shadow: 0 0 2px #ff00ff, 0 0 5px #ff00ff;
        font-size: 0.6rem;
        font-weight: 600;
        text-align: center;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
        z-index: 1;
        pointer-events: none;
    }

    .event-background {

        /* Replace with your image path */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100%;
        width: auto;
        border-radius: 12px;
        border: 2px solid transparent;
        border-color: #ff0099;
        box-shadow: 0 0 20px #ff0099;

    }

    .event-card-landscape {
        border-radius: 12px;
        transition: 0.3s;




        height: 200px;
        width: 100%;
        cursor: pointer;
        /* Full width */
        box-sizing: border-box;
        /* Optional: add overlay color for better text readability */
        margin: 10px;
        margin-bottom: 25px;

    }

   .buy-btn {

    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);

    /* Reduced size */
    padding: 7px 14px;       /* half of 14px 28px */
    border-radius: 30px;     /* slightly smaller radius */
    font-size: 0.75rem;      /* half of 1.1rem */
    font-weight: 600;

    color: #fff;
    letter-spacing: 0.4px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;

    /* Reduced glow strength */
    background: linear-gradient(135deg, #ff0099, #00ffff);
    box-shadow:
        0 0 7px rgba(255, 0, 153, 0.5),
        0 0 12px rgba(0, 255, 255, 0.35);

    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(3px);
}


}