/* Color Kids Party - Fő Stíluslap (Vidám, Színes, Lufis & UV Neon Téma) */
:root {
    --primary-neon: #a855f7;      /* Neon Lila */
    --pink-neon: #f43f5e;         /* Neon Pink / Ciklámen */
    --cyan-neon: #06b6d4;         /* Neon Ciánkék */
    --lime-neon: #84cc16;         /* Neon Limezöld */
    --yellow-neon: #fbbf24;       /* Neon Sárga */
    --orange-neon: #fb923c;       /* Neon Narancs */
    --dark-bg: #0b0914;           /* Mély Éjszakai Kék/Fekete */
    --dark-card: #131124;         /* Sötétkék Kártya háttér */
    --dark-card-hover: #1c1836;   /* Kártya hover háttér */
    --text-light: #f8fafc;        /* Fő szöveg */
    --text-muted: #94a3b8;        /* Másodlagos szöveg */
    --white: #ffffff;
    --border-glow: rgba(168, 85, 247, 0.3);
    --shadow-glow: 0 0 25px rgba(168, 85, 247, 0.25);
    --font-display: 'Quicksand', 'Nunito', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Lebegő vidám lufi háttér elemek */
.balloon-bg-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.balloon-item {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    opacity: 0.15;
    filter: blur(1px);
    animation: floatBalloon 16s ease-in-out infinite alternate;
}

.balloon-1 {
    width: 140px;
    height: 170px;
    background: radial-gradient(circle at 30% 30%, #f43f5e, #be123c);
    top: 15%;
    left: 4%;
    animation-duration: 14s;
}

.balloon-2 {
    width: 180px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, #06b6d4, #0e7490);
    top: 55%;
    right: 3%;
    animation-duration: 18s;
    animation-delay: -3s;
}

.balloon-3 {
    width: 120px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #fbbf24, #d97706);
    top: 80%;
    left: 8%;
    animation-duration: 20s;
    animation-delay: -7s;
}

.balloon-4 {
    width: 160px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #a855f7, #7e22ce);
    top: 35%;
    right: 12%;
    animation-duration: 15s;
    animation-delay: -5s;
}

.balloon-5 {
    width: 110px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, #84cc16, #4d7c0f);
    top: 5%;
    right: 25%;
    animation-duration: 22s;
    animation-delay: -9s;
}

@keyframes floatBalloon {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(4deg) scale(1.05); }
    100% { transform: translateY(20px) rotate(-4deg); }
}

/* Konténerek és tipográfia */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* SVG Ikonok Általános Stílusai */
.svg-icon {
    display: inline-block;
    vertical-align: middle;
    width: 1.25em;
    height: 1.25em;
    fill: currentColor;
    flex-shrink: 0;
}

.svg-icon-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svg-icon-tag {
    width: 1.1rem;
    height: 1.1rem;
}

.svg-icon-badge {
    width: 1.2rem;
    height: 1.2rem;
}

.svg-icon-lg {
    width: 2.2rem;
    height: 2.2rem;
}

.svg-icon-xl {
    width: 2.8rem;
    height: 2.8rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid var(--border-glow);
    color: #e9d5ff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-tag-balloon {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(244, 63, 94, 0.4);
    color: #fda4af;
}

.section-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title span {
    background: linear-gradient(135deg, var(--pink-neon), var(--primary-neon), var(--cyan-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

/* Navigáció */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 9, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--pink-neon), var(--primary-neon));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.5);
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.brand-name span {
    color: var(--cyan-neon);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--cyan-neon);
}

.nav-btn {
    background: linear-gradient(135deg, var(--pink-neon), var(--primary-neon));
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.35);
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.6);
}

/* Mobil menü gomb */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Hero Szekció */
.hero-section {
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero-content h1 span.highlight-pink {
    color: var(--pink-neon);
    text-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

.hero-content h1 span.highlight-cyan {
    color: var(--cyan-neon);
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.hero-lead {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.2rem;
}

.highlight-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.highlight-badge.badge-vip {
    border-color: rgba(251, 191, 36, 0.4);
    color: #fde047;
    background: rgba(251, 191, 36, 0.1);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-neon) 0%, var(--primary-neon) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.45);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(244, 63, 94, 0.65);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--cyan-neon);
    color: var(--cyan-neon);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 12px;
    border: 1.5px solid var(--border-glow);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.hero-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(19, 17, 36, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.floating-badge-text h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.floating-badge-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Csomagok & Árak Szekció */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #110d22 50%, var(--dark-bg) 100%);
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.package-card {
    background: var(--dark-card);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-neon);
    box-shadow: var(--shadow-glow);
}

.package-card.featured {
    border-color: var(--pink-neon);
    background: linear-gradient(180deg, #1d1430 0%, var(--dark-card) 100%);
    box-shadow: 0 0 30px rgba(244, 63, 94, 0.25);
}

.package-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, var(--pink-neon), var(--orange-neon));
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.package-duration {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cyan-neon);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price-box {
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.price-deposit-note {
    font-size: 0.88rem;
    color: #34d399;
    font-weight: 700;
    margin-top: 6px;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--lime-neon);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.2;
}

/* Választható Extrák Kártya */
.extras-box {
    background: rgba(19, 17, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2rem;
}

.extras-title {
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--yellow-neon);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.extra-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.extra-item-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: #f1f5f9;
}

.extra-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.extra-item-price {
    font-weight: 800;
    color: var(--cyan-neon);
    font-size: 0.95rem;
}

/* Galéria Szekció */
.gallery-section {
    padding: 80px 0;
}

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

.gallery-card {
    background: var(--dark-card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Házirend & Fontos Tudnivalók */
.rules-section {
    padding: 80px 0;
    background: rgba(19, 17, 36, 0.4);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.rule-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    transition: var(--transition);
}

.rule-card:hover {
    border-color: var(--cyan-neon);
}

.rule-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.rule-card p {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Kapcsolat Szekció */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info-card {
    background: var(--dark-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 2.2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-text p, .contact-text a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-text a:hover {
    color: var(--pink-neon);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    height: 380px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Lábléc */
.footer {
    background: #06050a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0 25px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 550px;
    background: rgba(19, 17, 36, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 14px;
    padding: 16px 20px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-text {
    font-size: 0.88rem;
    color: #cbd5e1;
}

.cookie-text a {
    color: var(--cyan-neon);
    text-decoration: underline;
}

.btn-cookie {
    background: var(--pink-neon);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-cookie:hover {
    background: #e11d48;
}

/* Reszponzív nézetek */
@media (max-width: 992px) {
    .hero-grid, .contact-grid, .packages-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
