/* Designed and Developed by Twin Pixel Pro - All Rights Reserved */
:root {
    --magenta: #FF0A78;
    --cyan: #00F0FF;
    --yellow: #FFD700;
    --lime: #39FF14;
    --orange: #FF5E00;
    --pink: #FF66B2;
    --light-bg: #E8FAFF;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text-primary: #7A00B3; 
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #7A00B3;
    background-color: #E8FAFF;
    -webkit-user-select: none; /* Anti-copy by Twin Pixel Pro */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* SLIDE PLACEHOLDER STYLES */
.slide-placeholder {
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,230,242,0.5)) !important;
    backdrop-filter: blur(10px);
    border: 3px dashed rgba(255, 10, 120, 0.35) !important;
    border-radius: 40px !important;
    overflow: hidden;
    position: relative;
}

.slide-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer-swipe 2.5s infinite;
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
}

.placeholder-icon {
    font-size: 64px;
    opacity: 0.5;
    filter: grayscale(0.3);
}

.placeholder-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 10, 120, 0.5);
    letter-spacing: 0.5px;
}

.shimmer-card {
    background: #f0f0f0 !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 400px;
    border: 5px solid white !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-radius: 40px !important;
}

.shimmer-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer-swipe 1.5s infinite;
}

@keyframes shimmer-swipe {
    0% { left: -100%; }
    100% { left: 100%; }
}

h1, h2, h3, .logo {
    font-family: 'Fredoka', sans-serif;
}

/* ================== BACKGROUND BLOBS ================== */
.blob-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #FFE6F2 0%, #E8FAFF 100%);
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: blob-move 15s infinite alternate ease-in-out;
}

.blob1 { width: 50vw; height: 50vw; background: #FF0A78; top: -10%; left: -10%; animation-delay: 0s; }
.blob2 { width: 40vw; height: 40vw; background: #00F0FF; bottom: -10%; right: -10%; animation-delay: -5s; }
.blob3 { width: 45vw; height: 45vw; background: #FFD700; top: 40%; left: 30%; animation-delay: -10s; }
.blob4 { width: 30vw; height: 30vw; background: #39FF14; top: 10%; right: 20%; animation-delay: -7s; }

@keyframes blob-move {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10vw, 15vh) scale(1.2); }
    100% { transform: translate(-10vw, -10vh) scale(0.9); }
}

/* ================== NAVBAR ================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(255, 10, 120, 0.15);
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 40px;
    top: 0;
    width: 100%;
    border-radius: 0 0 30px 30px;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: #FF0A78;
    text-shadow: 2px 2px 0px #FFFFFF;
    letter-spacing: 1px;
}
.logo-accent {
    color: #00F0FF;
}

.text-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #5D4037; /* Brown matching the logo */
    line-height: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.text-logo-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #5D4037;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Fallback for older browsers below */
    align-items: center;
}

.nav-actions, .lang-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    gap: 10px;
}

.btn-lang {
    background: transparent;
    border: 2px solid #FF0A78;
    color: #FF0A78;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-lang:hover, .btn-lang.active {
    background: #FF0A78;
    color: #FFFFFF;
}

.nav-item {
    text-decoration: none;
    color: #7A00B3;
    font-size: 20px;
    font-weight: 800;
    position: relative;
    transition: color 0.3s;
    display: inline-block;
}

/* Fix for Ukrainian labels being "too high" on some browsers/fonts */
html[lang="uk"] .nav-item {
    transform: translateY(2px);
}

.nav-item:hover { color: #FF0A78; }

.btn-magic {
    background: linear-gradient(90deg, #FF0A78, #FF5E00);
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 40px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(255, 10, 120, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.btn-magic:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(255, 94, 0, 0.5);
}
.btn-subtext {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-top: 4px;
}

/* ================== HERO ================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 140px 20px 0;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero-logo-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    animation: jelly 4s infinite;
}

@keyframes jelly {
    0%, 100% { transform: scale(1, 1); }
    30% { transform: scale(1.05, 0.95); }
    40% { transform: scale(0.95, 1.05); }
    50% { transform: scale(1.02, 0.98); }
    65% { transform: scale(0.98, 1.02); }
    75% { transform: scale(1, 1); }
}

.hero-logo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.exp-badge {
    display: inline-block;
    background: #FF0A78;
    color: #FFFFFF;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(255, 10, 120, 0.2);
    margin-bottom: 30px;
    animation: popUp 1.2s ease-out;
}

.bounce-title {
    font-size: 80px;
    line-height: 1.1;
    color: #FF0A78;
    text-shadow: 4px 4px 0px #FFFFFF, 8px 8px 20px rgba(255, 10, 120, 0.3);
    margin-bottom: 20px;
    animation: popUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.text-glow {
    color: #00F0FF;
    background: linear-gradient(90deg, #00F0FF, #00A6FF);
    -webkit-background-clip: text;
    background-clip: text;
    
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 900;
    color: #4B0082; /* Deep playful violet, extremely saturated */
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.8);
}

.btn-mega {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #39FF14);
    color: #005000;
    font-size: 26px;
    font-weight: 900;
    padding: 20px 60px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid #FFFFFF;
}

.btn-mega:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 20px 45px rgba(255, 215, 0, 0.7);
}

/* ================== ABOUT / GALLERY ================== */
.about {
    padding: 40px 20px 0px;
    text-align: center;
    position: relative;
    z-index: 5;
    overflow: hidden; /* Prevent carousel slides from causing horizontal scroll */
}

.section-title {
    font-size: 60px;
    color: #FF5E00;
    text-shadow: 3px 3px 0 #FFFFFF;
    margin-bottom: 60px;
    text-align: center;
}
.white-text {
    color: #FFFFFF;
    text-shadow: 3px 3px 0 #FF1A75;
}

.gallery {
    display: flex;
    flex-direction: column; /* Stack vertically as requested */
    align-items: center;
    gap: 40px; /* Spread out */
    perspective: 1000px;
}

.tilt-card {
    width: 320px;
    height: 450px;
    border-radius: 40px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.3);
    border-bottom: 10px solid #00F0FF;
    border-right: 8px solid #00F0FF;
    transform-style: preserve-3d;
    transition: transform 0.2s;
    cursor: pointer;
}

.tilt-card-inner {
    width: 100%;
    height: 85%;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 20px rgba(255,10,120,0.3);
    transition: all 0.5s;
}

.tilt-card:hover .tilt-card-inner {
    transform: translateZ(50px) scale(1.05);
}

.card-caption {
    font-size: 26px;
    font-weight: 800;
    margin-top: 15px;
    color: #FF0A78;
}

/* ================== PRICING ================== */
.pricing {
    padding: 20px 20px 40px;
    background: #E8FAFF;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    perspective: 1200px;
}

.pricing-category {
    margin-bottom: 40px;
    width: 100%;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 48px;
    color: #FF0A78;
    text-shadow: 3px 3px 0 #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
}

.category-subtitle {
    font-size: 24px;
    font-weight: 800;
    color: #7A00B3;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.package-card-container {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.package-card-container:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card-container:active {
    transform: scale(0.95);
}

.package-flyer {
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 3px solid white;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#selected-package {
    transition: all 0.5s ease;
}

#selected-package:not(:placeholder-shown) {
    animation: pulse-select 1s ease-in-out;
}

@keyframes pulse-select {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px var(--magenta); }
    100% { transform: scale(1); }
}

.price-tier {
    background: #FFFFFF;
    width: 380px;
    padding: 30px;
    border-radius: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    position: relative;
    transform: translateY(100px) rotateX(10deg);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; /* Make cards flex containers */
    flex-direction: column;
}

.tier-center {
    transform: translateY(100px) scale(1.1) rotateX(10deg);
    z-index: 10;
}

.price-tier.show {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}
.tier-center.show {
    transform: translateY(-20px) scale(1.1) rotateX(0);
}

.tier-mini { border: 8px solid #FFCD00; }
.tier-big { border: 8px solid #00F0FF; }
.tier-luxury { border: 8px solid #AA00FF; }

.ticket-visual {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.tier-mini .ticket-visual { background-image: url('pictures/packages/tinywonders.jpg'); }
.tier-center .ticket-visual { background-image: url('pictures/packages/partypop.jpg'); }
.tier-luxury .ticket-visual { background-image: url('pictures/packages/ultimatewowexperience.jpg'); }

.price-tier:hover .ticket-visual {
    transform: scale(1.05) translateY(-10px);
}

.tier-title {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tier-mini .tier-title { color: #FF0055; text-shadow: 2px 2px 0 #FFCD00; }
.tier-big .tier-title { color: #0088FF; text-shadow: 2px 2px 0 #00F0FF; }
.tier-luxury .tier-title { color: #8800FF; text-shadow: 2px 2px 0 #FF00FF; }

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    flex-grow: 1; /* Push button to the bottom */
}

.features span {
    font-size: 22px;
    font-weight: 800;
    color: #440066;
    background: #FFF0F5;
    padding: 10px 20px;
    border-radius: 20px;
}

.btn-tier {
    width: 100%;
    padding: 16px;
    font-size: 24px;
    font-weight: 900;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.3s;
}

.tier-mini .btn-tier { background: linear-gradient(90deg, #FF0055, #FF5500); }
.tier-big .btn-tier { background: linear-gradient(90deg, #0088FF, #00D0FF); }
.tier-luxury .btn-tier { background: linear-gradient(90deg, #8800FF, #FF00FF); }

.btn-tier:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* ================== CAROUSEL ================== */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 600px;
    perspective: 1200px;
}

.carousel-track-container {
    overflow: visible; /* Allow side photos to be seen */
    flex: 1 1 auto;
    height: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-slide {
    position: absolute;
    width: 350px;
    height: 500px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transform: translateX(0) scale(0.5) rotateY(0deg);
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
    transform: translateX(0) scale(1.2);
}

.carousel-slide.prev {
    opacity: 0.6;
    pointer-events: auto;
    z-index: 5;
    transform: translateX(-250px) scale(0.8) rotateY(25deg);
}

.carousel-slide.next {
    opacity: 0.6;
    pointer-events: auto;
    z-index: 5;
    transform: translateX(250px) scale(0.8) rotateY(-25deg);
}

.carousel-slide.far-prev {
    opacity: 0.2;
    transform: translateX(-450px) scale(0.6) rotateY(45deg);
}

.carousel-slide.far-next {
    opacity: 0.2;
    transform: translateX(450px) scale(0.6) rotateY(-45deg);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px;
    border: 5px solid white;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #FF0A78;
    color: #FF0A78;
    font-size: 28px;
    font-weight: 900;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 10, 120, 0.3);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #FF0A78;
    color: #FFFFFF;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 10, 120, 0.5);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 10, 120, 0.25);
    border: 2px solid #FF0A78;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #FF0A78;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 10, 120, 0.6);
}

.carousel-pause-btn {
    display: block;
    margin: 15px auto 0;
    background: transparent;
    border: 2px solid #FF0A78;
    color: #FF0A78;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-pause-btn:hover {
    background: #FF0A78;
    color: #FFFFFF;
}

/* ================== FOOTER ================== */
.site-footer {
    position: relative;
    margin-top: 0;
}

.footer-top-wave {
    width: 100%;
    line-height: 0;
    margin-top: -5px;
}

.footer-top-wave svg {
    width: 100%;
    display: block;
}

.footer-main {
    background: #1a0030;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1 1 auto;
    min-width: 220px;
    text-align: center;
}

.footer-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF0A78;
    box-shadow: 0 0 20px rgba(255, 10, 120, 0.4);
    margin-bottom: 15px;
}

.footer-brand-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #FF0A78;
    text-shadow: 0 0 15px rgba(255, 10, 120, 0.5);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.footer-links-col {
    flex: 1 1 auto;
    min-width: 180px;
}

.footer-col-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #00F0FF;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-nav a:hover {
    color: #FF0A78;
    padding-left: 10px;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s;
}

.social-link span {
    display: inline;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.social-instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.6);
}

.social-facebook {
    background: linear-gradient(45deg, #1877F2, #42a5f5);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-facebook:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.6);
}

.social-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
}

.footer-cta {
    font-size: 20px;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 25px;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF0A78, #00F0FF, transparent);
    margin: 20px 0;
    border-radius: 2px;
}

.footer-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
}

.footer-tp-logo {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-tp-logo:hover {
    opacity: 1;
}

.footer-attribution span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 700;
}

/* ================== CONTACT FORM ================== */
.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(5px);
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.8);
    font-size: 18px;
    font-family: inherit;
    font-weight: 700;
    color: #FF0A78;
    outline: none;
}
.contact-form button {
    background: #FFD700;
    color: #4A00E0;
    border: none;
    padding: 15px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.contact-form button:hover {
    transform: scale(1.05);
}

/* Shapes and Animations */
@keyframes popUp {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.wave-container {
    width: 100%;
    line-height: 0;
    z-index: 2;
    position: relative;
    top: 5px;
    margin-top: -8vw;
}
.bottom-wave {
    background: #FF1A75;
    top: -5px;
    margin-top: 0;
}

@media (max-width: 900px) {
    .bounce-title { font-size: 60px; }
    .gallery { flex-direction: column; align-items: center; }
    .pricing-cards { flex-direction: column; align-items: center; }
    .tier-center { transform: translateY(0) scale(1) rotateX(0); }
    .tier-center.show { transform: translateY(0) scale(1) rotateX(0); }
    .carousel-slide img { height: 400px; }
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        left: 0;
        transform: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        position: relative;
        width: 100%;
        border-radius: 0;
        top: 0;
        justify-content: center;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .lang-actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero { padding: 100px 20px 20px; }
    .bounce-title { font-size: 32px; }
    .hero-subtitle { font-size: 18px; margin-bottom: 30px; }
    .btn-mega { padding: 15px 30px; font-size: 20px; }
    .section-title { font-size: 32px; margin-bottom: 30px; }
    .tilt-card { width: 100%; max-width: 320px; }
    .price-tier { width: 100%; max-width: 380px; padding: 20px; }
    .tier-title { font-size: 32px; }
    .btn-tier { font-size: 20px; padding: 12px; }
    .nav-item { font-size: 16px; }
    .btn-magic { padding: 8px 15px; font-size: 14px; }
    .about-page-content {
        padding-top: 50px;
        flex-direction: column;
    }
    .about-photo {
        width: 100%;
        max-width: 400px;
        height: 400px;
        transform: rotate(0);
    }
    .carousel-slide img { height: 350px; }
    .carousel-slide {
        width: 240px;
        height: 350px;
        left: 50%;
        margin-left: -120px; /* Centering absolute element */
    }
    .carousel-slide.active {
        transform: translateX(0) scale(1.1);
        opacity: 1;
    }
    .carousel-slide.prev {
        transform: translateX(-80px) scale(0.8) rotateY(15deg);
        opacity: 0.4;
        display: block;
    }
    .carousel-slide.next {
        transform: translateX(80px) scale(0.8) rotateY(-15deg);
        opacity: 0.4;
        display: block;
    }
    .carousel-slide.far-prev, .carousel-slide.far-next {
        display: none;
    }
    .carousel-wrapper {
        height: 400px;
        overflow: hidden; 
        position: relative;
        display: block; /* Disable flex for absolute positioning of buttons */
    }
    .carousel-track-container {
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        font-size: 20px;
        z-index: 20;
    }
    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.15);
    }
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
    .carousel-prev { left: 5px; }
    .carousel-next { right: 5px; }
    .carousel-dots { margin-top: 10px; }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-main {
        padding: 40px 20px 20px;
    }
    .footer-cta {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .blob1 { width: 80vw; height: 80vw; }
    .blob2 { width: 70vw; height: 70vw; }
    .blob3 { width: 75vw; height: 75vw; }
    .blob4 { width: 60vw; height: 60vw; }
    .carousel-slide {
        width: 220px;
        margin-left: -110px;
    }
    .carousel-slide.prev {
        transform: translateX(-60px) scale(0.8) rotateY(15deg);
    }
    .carousel-slide.next {
        transform: translateX(60px) scale(0.8) rotateY(-15deg);
    }
}

@supports (-webkit-background-clip: text) {
    .text-glow {
        -webkit-text-fill-color: transparent;
    }
}

/* ================== 2K & 4K RESOLUTIONS (Ultra High-Res Optimization) ================== */
@media (min-width: 2500px) {
    /* 1. Reduce distance between main menu and logo */
    .hero {
        padding-top: 180px;
        min-height: 850px; /* Limit height to prevent massive white space */
    }
    .hero-logo-container {
        max-width: 400px;
        margin-bottom: 20px;
    }

    /* Red wave optimization */
    .wave-container svg {
        height: 120px;
        width: 100%;
        display: block;
    }
    .wave-container {
        margin-top: -3vw;
        z-index: 1;
    }
    .carousel-btn {
        z-index: 20;
    }

    /* 2. Reduce distance between buttons and "Our Party Stars" */
    .hero-subtitle { margin-bottom: 30px; }
    .hero div[style*="margin-top: 20px"] { margin-top: 30px !important; }

    /* 3. Compact "Ready to Celebrate" text */
    .contact-section .section-title {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.2;
    }

    /* Scaling for 2K */
    .navbar { max-width: 1600px; padding: 20px 50px; }
    .bounce-title { font-size: 100px; }
    .hero-subtitle { font-size: 34px; }
    .section-title { font-size: 80px; }
    .carousel-wrapper { max-width: 1800px; height: 750px; }
    .carousel-slide { width: 450px; height: 600px; }
    .carousel-slide.prev { transform: translateX(-350px) scale(0.8) rotateY(25deg); }
    .carousel-slide.next { transform: translateX(350px) scale(0.8) rotateY(-25deg); }
}

@media (min-width: 3800px) {
    /* 4K Specific Optimizations */
    .hero {
        padding-top: 250px;
        min-height: 1100px;
    }
    .hero-logo-container {
        max-width: 550px;
    }

    .wave-container svg {
        height: 180px;
        width: 100%;
        display: block;
    }
    .wave-container {
        margin-top: -2vw;
        z-index: 1;
    }

    .carousel-btn {
        width: 80px;
        height: 80px;
        font-size: 40px;
        z-index: 20;
    }

    .contact-section .section-title {
        max-width: 1800px;
    }

    /* Scaling for 4K */
    .navbar { max-width: 2200px; padding: 30px 80px; top: 30px; }
    .nav-item { font-size: 28px; }
    .btn-magic { font-size: 22px; padding: 15px 40px; }
    .btn-subtext { font-size: 16px; }
    
    .bounce-title { font-size: 140px; }
    .hero-subtitle { font-size: 46px; }
    .section-title { font-size: 100px; }
    .exp-badge { font-size: 28px; padding: 12px 40px; }
    .btn-mega { font-size: 36px; padding: 25px 80px; border-radius: 80px; }

    .carousel-wrapper { max-width: 2400px; height: 900px; gap: 40px; }
    .carousel-slide { width: 600px; height: 800px; }
    .carousel-slide.prev { transform: translateX(-500px) scale(0.8) rotateY(25deg); }
    .carousel-slide.next { transform: translateX(500px) scale(0.8) rotateY(-25deg); }
    .carousel-btn { width: 80px; height: 80px; font-size: 40px; }
}
