/*
Theme Name: Ledorini - Kindergeburtstag Mödling
Theme URI: https://ledorini.at
Author: Milad Atri
Description: Ein fröhliches One-Page WordPress Theme für Ledorini – privater Indoorspielplatz für unvergessliche Kindergeburtstage in Mödling.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ledorini
*/

/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pink: #ff6b9d;
    --pink-light: #ffb8d4;
    --yellow: #ffd93d;
    --yellow-light: #fff3b0;
    --blue: #6bc5f8;
    --blue-light: #b8e4ff;
    --green: #6bcb77;
    --green-light: #b8eabd;
    --purple: #a66dd4;
    --purple-light: #d4b8f0;
    --orange: #ff8c42;
    --orange-light: #ffcba4;
    --red: #ff6b6b;
    --white: #ffffff;
    --off-white: #fff9f0;
    --dark: #2d3436;
    --gray: #636e72;
    --gray-light: #dfe6e9;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== FUN BACKGROUND DECORATIONS ===== */
.bg-dots {
    position: relative;
}

.bg-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, var(--pink-light) 1px, transparent 1px),
        radial-gradient(circle, var(--blue-light) 1px, transparent 1px),
        radial-gradient(circle, var(--yellow-light) 1px, transparent 1px);
    background-size:
        60px 60px,
        80px 80px,
        100px 100px;
    background-position:
        0 0,
        30px 30px,
        60px 10px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.bg-dots > * {
    position: relative;
    z-index: 1;
}

/* ===== CONFETTI ANIMATION ===== */
@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes wiggle {
    0%,
    100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

@keyframes pop-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rainbow-border {
    0% {
        border-color: var(--pink);
    }
    16% {
        border-color: var(--orange);
    }
    33% {
        border-color: var(--yellow);
    }
    50% {
        border-color: var(--green);
    }
    66% {
        border-color: var(--blue);
    }
    83% {
        border-color: var(--purple);
    }
    100% {
        border-color: var(--pink);
    }
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.site-logo span {
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

.site-logo .logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu a:hover {
    background: var(--pink-light);
    color: var(--pink);
    transform: scale(1.05);
}

.nav-menu a.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: white;
    padding: 10px 22px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.nav-menu a.nav-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(170deg, #fff0f5 0%, #f0f8ff 30%, #fff8e1 60%, #f0fff0 100%);
    position: relative;
    overflow: hidden;
}

/* Floating shapes in hero */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    background: var(--pink);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    background: var(--blue);
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.hero-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: var(--yellow);
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.hero-shape:nth-child(4) {
    width: 120px;
    height: 120px;
    background: var(--green);
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.hero-shape:nth-child(5) {
    width: 80px;
    height: 80px;
    background: var(--purple);
    top: 50%;
    left: 25%;
    animation-delay: 1.5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 24px;
    animation: bounce-in 0.8s ease-out;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    animation: slide-up 0.8s ease-out 0.2s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 36px;
    animation: slide-up 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    animation: slide-up 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: white;
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 3px solid var(--blue-light);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    border-color: var(--blue);
    transform: translateY(-3px) scale(1.03);
    background: var(--blue-light);
}

.hero-contact {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
    animation: slide-up 0.8s ease-out 0.8s both;
}

.hero-contact a {
    color: var(--pink);
    font-weight: 800;
    transition: var(--transition);
}

.hero-contact a:hover {
    color: var(--purple);
}

/* ===== SECTION COMMON ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title h2 .accent {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Fun divider */
.fun-divider {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

.fun-divider span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.fun-divider span:nth-child(1) {
    background: var(--pink);
}
.fun-divider span:nth-child(2) {
    background: var(--yellow);
}
.fun-divider span:nth-child(3) {
    background: var(--blue);
}
.fun-divider span:nth-child(4) {
    background: var(--green);
}
.fun-divider span:nth-child(5) {
    background: var(--purple);
}

/* ===== WARUM LEDORINI ===== */
.why-section {
    background: white;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.why-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
    cursor: default;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink-light);
    box-shadow: var(--shadow-lg);
}

.why-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.why-card:nth-child(2) .card-icon {
    animation-delay: 0.5s;
}
.why-card:nth-child(3) .card-icon {
    animation-delay: 1s;
}
.why-card:nth-child(4) .card-icon {
    animation-delay: 1.5s;
}
.why-card:nth-child(5) .card-icon {
    animation-delay: 2s;
}
.why-card:nth-child(6) .card-icon {
    animation-delay: 2.5s;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray);
}

.why-quote {
    background: linear-gradient(135deg, #fff0f5, #f0f8ff);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 3px dashed var(--pink-light);
    animation: rainbow-border 8s linear infinite;
}

.why-quote h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.8;
}

/* ===== SPIELBEREICH ===== */
.play-section {
    background: linear-gradient(170deg, #fff8e1 0%, #f0fff0 50%, #f0f8ff 100%);
}

.play-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.play-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.play-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.play-card:hover::before {
    left: 100%;
}

.play-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.play-card:nth-child(1) {
    border-color: var(--pink-light);
}
.play-card:nth-child(1):hover {
    border-color: var(--pink);
    background: #fff0f5;
}

.play-card:nth-child(2) {
    border-color: var(--blue-light);
}
.play-card:nth-child(2):hover {
    border-color: var(--blue);
    background: #f0f8ff;
}

.play-card:nth-child(3) {
    border-color: var(--yellow-light);
}
.play-card:nth-child(3):hover {
    border-color: var(--yellow);
    background: #fffde7;
}

.play-card:nth-child(4) {
    border-color: var(--green-light);
}
.play-card:nth-child(4):hover {
    border-color: var(--green);
    background: #f0fff0;
}

.play-card:nth-child(5) {
    border-color: var(--purple-light);
}
.play-card:nth-child(5):hover {
    border-color: var(--purple);
    background: #f5f0ff;
}

.play-card:nth-child(6) {
    border-color: var(--orange-light);
}
.play-card:nth-child(6):hover {
    border-color: var(--orange);
    background: #fff3e0;
}

.play-card:nth-child(7) {
    border-color: var(--pink-light);
}
.play-card:nth-child(7):hover {
    border-color: var(--pink);
    background: #fff0f5;
}

.play-card:nth-child(8) {
    border-color: var(--blue-light);
}
.play-card:nth-child(8):hover {
    border-color: var(--blue);
    background: #f0f8ff;
}

.play-card .card-emoji {
    font-size: 3rem;
    margin-bottom: 12px;
    display: inline-block;
    transition: var(--transition);
}

.play-card:hover .card-emoji {
    transform: scale(1.2) rotate(10deg);
}

.play-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
}

.play-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    border: 2px dashed var(--green-light);
}

/* ===== PREISE / PRICING ===== */
.pricing-section {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card:nth-child(1) {
    border-color: var(--blue-light);
}
.pricing-card:nth-child(1):hover {
    border-color: var(--blue);
}
.pricing-card:nth-child(2) {
    border-color: var(--pink-light);
}
.pricing-card:nth-child(2):hover {
    border-color: var(--pink);
}

.pricing-header {
    padding: 24px 28px;
    text-align: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}

.pricing-card:nth-child(1) .pricing-header {
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.pricing-card:nth-child(2) .pricing-header {
    background: linear-gradient(135deg, var(--pink), var(--orange));
}

.pricing-body {
    padding: 28px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 2px dashed var(--gray-light);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.price-label small {
    display: block;
    font-weight: 600;
    color: var(--gray);
    font-size: 0.82rem;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--pink);
    white-space: nowrap;
}

.pricing-card:nth-child(1) .price-amount {
    color: var(--blue);
}

/* Included */
.included-box {
    background: linear-gradient(135deg, #f0fff0, #fff8e1);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 40px;
    border: 3px solid var(--green-light);
}

.included-box h3 {
    font-size: 1.3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

.included-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 0;
}

.included-list li .check {
    width: 28px;
    height: 28px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Seats */
.seats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.seat-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    border: 3px solid var(--yellow-light);
    transition: var(--transition);
}

.seat-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.seat-emoji {
    font-size: 3rem;
    margin-bottom: 10px;
}

.seat-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.pricing-notes {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #fff0f5, #f0f8ff);
    border-radius: var(--radius);
    border: 2px dashed var(--pink-light);
}

.pricing-notes p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: linear-gradient(170deg, #fff0f5 0%, #f0f8ff 50%, #fff8e1 100%);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-light);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border: 4px solid white;
    box-shadow: var(--shadow);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    color: var(--gray);
    font-weight: 700;
    font-size: 0.95rem;
}

.gallery-placeholder .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    font-weight: 300;
    transition: var(--transition);
}

.lightbox-close:hover {
    transform: scale(1.2) rotate(90deg);
}

/* ===== FAQ ===== */
.faq-section {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--gray-light);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--pink-light);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 28px;
    background: var(--off-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: inherit;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: #fff0f5;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pink);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--pink);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--gray);
    line-height: 1.9;
    font-size: 0.98rem;
}

.faq-answer-inner ul {
    margin-top: 12px;
    padding-left: 8px;
}

.faq-answer-inner ul li {
    padding: 4px 0;
    font-weight: 600;
}

.faq-answer-inner ul li::before {
    content: '• ';
    color: var(--pink);
    font-weight: 800;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    background: linear-gradient(170deg, #fff0f5 0%, #f0f8ff 50%, #fff8e1 100%);
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--pink-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 3px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
    background: white;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px 36px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 2;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--pink);
}

.footer-col .social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-col .social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
}

.footer-col .social-links a:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .play-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 32px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 4px;
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.05rem;
        padding: 14px 20px;
        width: 100%;
        text-align: left;
        border-radius: var(--radius-sm);
    }

    .nav-menu a.nav-cta {
        text-align: center;
        margin-top: 12px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .seats-box {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .play-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .play-card {
        padding: 20px 14px;
    }

    .play-card .card-emoji {
        font-size: 2.2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ===== MOBILE MENU OVERLAY ===== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* ===== COOKIE / PRIVACY NOTICE ===== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    text-align: center;
}

.cookie-notice.show {
    display: block;
}

.cookie-notice p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gray);
}

.cookie-notice .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}
