/* =====================================================
   Kids Village Tanger — Custom CSS (complementing Tailwind)
   ===================================================== */

/* ── Global Reset & Fonts ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

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

/* ── CUSTOM VARIABLES ── */
:root {
    --nav-blue: #bde0fe;
    --nav-green: #b7e4c7;
    --nav-yellow: #fdf0d5;
    --nav-orange: #ffd6a5;
    --nav-pink: #ffcbf2;
    --nav-cta: #ffb703;
    --nav-cta-hover: #fb8500;
    --text-color: #333333;
}

/* Responsive Helper Utilities */
.desktop-only {
    display: none !important;
}

.mobile-only {
    display: block !important;
}

@media (min-width: 1025px) {
    .desktop-only {
        display: flex !important;
    }

    a.desktop-only {
        display: inline-flex !important;
    }

    .mobile-only {
        display: none !important;
    }
}

/* ── HEADER & NAVBAR ── */
.kids-header {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.kids-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(245, 245, 245, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 80px;
    padding: 10px 25px;
    width: 100%;
    max-width: 1300px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    font-family: 'Fredoka', sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.kids-navbar:hover {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12) !important;
}

/* ── BRAND LOGO ── */
.nav-brand {
    display: flex;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.nav-brand img {
    height: 75px;
    /* Enlarged logo size */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-brand:hover img {
    transform: scale(1.05);
}

/* ── NAVIGATION MENU ── */
.nav-menu {
    display: none;
    /* Hidden on mobile and tablets */
    align-items: center;
    gap: 2px;
    /* Very small spacing between buttons */
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 15px;
    border-radius: 50px;
    white-space: nowrap;
    /* Prevent word wrapping */
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.nav-link.active {
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

/* Pastel Colors */
.nav-blue {
    background-color: var(--nav-blue);
}

.nav-green {
    background-color: var(--nav-green);
}

.nav-yellow {
    background-color: var(--nav-yellow);
}

.nav-orange {
    background-color: var(--nav-orange);
}

.nav-pink {
    background-color: var(--nav-pink);
}

/* ── CTA & ACTIONS ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: 5px;
}

.nav-cta {
    background-color: var(--nav-cta);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 183, 3, 0.2);
    transition: all 0.3s ease;
    min-height: 40px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: var(--nav-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 183, 3, 0.35);
}

/* ── MOBILE TOGGLE ── */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
}

/* ── MOBILE NAVIGATION ── */
.mobile-nav-menu {
    position: fixed;
    top: 80px;
    left: 15px;
    right: 15px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    gap: 4px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.mobile-nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
}

.mobile-cta {
    background-color: var(--nav-cta);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    margin-top: 6px;
}

/* ── HERO ── */
.hero {
    position: relative;
    background: linear-gradient(to bottom, #ffffff 40%, #c8edfb 72%, #a6e1fa 100%);
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hero Content & Layout */
/* We removed the CSS grid here to allow full-width background slider */

/* Floating Emoji Elements */
.floating-el {
    position: absolute;
    animation: float 4s ease-in-out infinite alternate;
    z-index: 5;
    opacity: 0.85;
    pointer-events: none;
    will-change: transform;
    transform: scale(0.6);
    /* Reduced size on mobile */
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg) scale(0.6);
    }

    100% {
        transform: translateY(-10px) rotate(8deg) scale(0.6);
    }
}

.el-1 {
    top: 15%;
    left: 5%;
}

.el-2 {
    top: 12%;
    right: 10%;
}

.el-3 {
    top: 40%;
    right: 5%;
}

.el-4 {
    top: 60%;
    left: 8%;
}

.el-5 {
    top: 75%;
    right: 12%;
}

.el-6 {
    top: 80%;
    left: 15%;
}

.el-7 {
    top: 30%;
    right: 2%;
}

.hero-content {
    /* No longer display:contents, uses flexbox classes from HTML */
}

/* ── HERO TEXT GLOW EFFECTS ── */

/* Main H1 title glow: white text with soft luminous shadow */
.hero-title-glow {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.35),
        0 4px 20px rgba(0, 0, 0, 0.7),
        0 2px 6px rgba(0, 0, 0, 0.9);
    animation: hero-glow-pulse 3s ease-in-out infinite alternate;
}

/* Subtitle glow */
.hero-subtitle-glow {
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.8),
        0 0 18px rgba(255, 255, 255, 0.45),
        0 3px 12px rgba(0, 0, 0, 0.8);
}

/* Paragraph glow */
.hero-para-glow {
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.75);
}

/* Colored word: Yellow */
.hero-word-yellow {
    color: #FFE34D;
    text-shadow:
        0 0 8px rgba(255, 227, 77, 0.95),
        0 0 22px rgba(255, 215, 0, 0.75),
        0 0 50px rgba(255, 200, 0, 0.45),
        0 3px 14px rgba(0, 0, 0, 0.8);
}

/* Colored word: Blue */
.hero-word-blue {
    color: #7DD8FF;
    text-shadow:
        0 0 8px rgba(125, 216, 255, 0.95),
        0 0 22px rgba(56, 189, 248, 0.75),
        0 0 50px rgba(14, 165, 233, 0.45),
        0 3px 14px rgba(0, 0, 0, 0.8);
}

/* Colored word: Green */
.hero-word-green {
    color: #6EF0A0;
    text-shadow:
        0 0 8px rgba(110, 240, 160, 0.95),
        0 0 22px rgba(52, 211, 153, 0.75),
        0 0 50px rgba(16, 185, 129, 0.45),
        0 3px 14px rgba(0, 0, 0, 0.8);
}

/* Pulsing glow keyframe animation */
@keyframes hero-glow-pulse {
    0% {
        text-shadow:
            0 0 8px rgba(255, 255, 255, 0.9),
            0 0 20px rgba(255, 255, 255, 0.6),
            0 0 45px rgba(255, 255, 255, 0.35),
            0 4px 20px rgba(0, 0, 0, 0.7),
            0 2px 6px rgba(0, 0, 0, 0.9);
    }

    100% {
        text-shadow:
            0 0 14px rgba(255, 255, 255, 1),
            0 0 35px rgba(255, 255, 255, 0.75),
            0 0 70px rgba(255, 255, 255, 0.45),
            0 4px 20px rgba(0, 0, 0, 0.7),
            0 2px 6px rgba(0, 0, 0, 0.9);
    }
}

/* Wave Divider */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: calc(100% + 2px);
    line-height: 0;
    z-index: 6;
    pointer-events: none;
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
    /* Smaller wave on mobile */
}

/* Wave Animations */
.wave-back {
    animation: waveBack 7s ease-in-out infinite alternate;
    transform-origin: center bottom;
}

.wave-front {
    animation: waveFront 5s ease-in-out infinite alternate;
    transform-origin: center bottom;
}

@keyframes waveBack {
    0% {
        transform: translateX(0px) scaleY(1);
    }

    50% {
        transform: translateX(-10px) scaleY(1.03);
    }

    100% {
        transform: translateX(10px) scaleY(0.98);
    }
}

@keyframes waveFront {
    0% {
        transform: translateX(0px) scaleY(1);
    }

    50% {
        transform: translateX(15px) scaleY(1.02);
    }

    100% {
        transform: translateX(-10px) scaleY(0.99);
    }
}


/* ── SCATTERED ANIMATED COLLAGE ── */
.about-collage-animated {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
    min-width: 360px;
}

.collage-slot {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 20px;
    border: 6px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.4s ease, box-shadow 0.4s ease;
}

.collage-slot:hover {
    animation-play-state: paused !important;
    transform: scale(1.1) translateY(-15px) rotate(0deg) !important;
    z-index: 10 !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.22);
}

.slot-1 {
    top: 10%;
    left: 0;
    z-index: 1;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
}

.slot-2 {
    top: 5%;
    right: 0;
    z-index: 2;
    width: 190px;
    height: 190px;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
}

.slot-3 {
    bottom: 5%;
    left: 15%;
    z-index: 3;
    width: 210px;
    height: 210px;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
}

.slot-4 {
    bottom: 0;
    right: 10%;
    z-index: 4;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
}

/* Staggered entry reveal animations for the collage slots */
#about.revealed .slot-1 {
    animation: collage-float-1-entry 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, collage-float-1 6s ease-in-out infinite alternate 1.2s;
}

#about.revealed .slot-2 {
    animation: collage-float-2-entry 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, collage-float-2 7s ease-in-out infinite alternate 1.2s;
    animation-delay: 0.15s, 1.35s;
}

#about.revealed .slot-3 {
    animation: collage-float-3-entry 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, collage-float-3 6.5s ease-in-out infinite alternate 1.2s;
    animation-delay: 0.3s, 1.5s;
}

#about.revealed .slot-4 {
    animation: collage-float-4-entry 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, collage-float-4 7.5s ease-in-out infinite alternate 1.2s;
    animation-delay: 0.45s, 1.65s;
}

/* Slide in animation for the text content */
.about-text {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#about.revealed .about-text {
    opacity: 1;
    transform: translateX(0);
}

/* Entry Keyframes (Pop and rotate) */
@keyframes collage-float-1-entry {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(-8deg);
    }
}

@keyframes collage-float-2-entry {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(10deg);
    }
}

@keyframes collage-float-3-entry {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(6deg);
    }
}

@keyframes collage-float-4-entry {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(-5deg);
    }
}

/* Infinite Floating Keyframes */
@keyframes collage-float-1 {
    0% {
        transform: rotate(-8deg) translateY(0px) scale(1);
    }

    100% {
        transform: rotate(-5deg) translateY(-12px) scale(1);
    }
}

@keyframes collage-float-2 {
    0% {
        transform: rotate(10deg) translateY(0px) scale(1);
    }

    100% {
        transform: rotate(12deg) translateY(-14px) scale(1);
    }
}

@keyframes collage-float-3 {
    0% {
        transform: rotate(6deg) translateY(0px) scale(1);
    }

    100% {
        transform: rotate(3deg) translateY(-10px) scale(1);
    }
}

@keyframes collage-float-4 {
    0% {
        transform: rotate(-5deg) translateY(0px) scale(1);
    }

    100% {
        transform: rotate(-8deg) translateY(-12px) scale(1);
    }
}

.collage-slot img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.collage-slot img.active {
    opacity: 1;
}

/* Make it responsive */
@media (max-width: 768px) {
    .about-collage-animated {
        height: 340px;
        min-width: unset;
        width: 100%;
        max-width: 340px;
        margin: 0 auto 2rem auto;
    }

    .collage-slot {
        width: 150px;
        height: 150px;
        border-width: 4px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .slot-1 {
        top: 10px;
        left: 0;
    }

    .slot-2 {
        top: 30px;
        right: 0;
        width: 130px;
        height: 130px;
    }

    .slot-3 {
        bottom: 30px;
        left: 5%;
        width: 140px;
        height: 140px;
    }

    .slot-4 {
        bottom: 0;
        right: 5%;
        width: 150px;
        height: 150px;
    }
}

/* ── PLAYGROUND BANNER ── */
.playground-banner-section {
    position: relative;
    background-color: #f8fafc;
}

/* ── GALLERY FILTERS ── */
#gallery {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 50%, #fffbf0 100%) !important;
    overflow: hidden;
    z-index: 1;
}

/* Floating background elements */
.gallery-bg-element {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    opacity: 0.12;
    animation: galleryFloat 8s ease-in-out infinite alternate;
}

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

    100% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.gallery-bg-element.star {
    top: 5%;
    right: 5%;
    width: 60px;
    height: 60px;
    fill: #ffe97d;
}

.gallery-bg-element.cloud-left {
    top: 15%;
    left: 3%;
    width: 100px;
    height: 60px;
    fill: #9ee0fc;
    animation-delay: 1s;
}

.gallery-bg-element.balloon {
    bottom: 10%;
    left: 5%;
    width: 50px;
    height: 80px;
    fill: #ffb7d5;
    animation-delay: 2s;
}

.gallery-bg-element.plane {
    bottom: 15%;
    right: 4%;
    width: 70px;
    height: 50px;
    fill: #ffb57b;
    animation-delay: 3s;
}

.gallery-filters {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 40px !important;
    border: 3px dashed #a7f3d0 !important;
    padding: 8px 12px !important;
    margin-bottom: 2.5rem !important;
    box-shadow: 0 15px 35px rgba(167, 243, 208, 0.15) !important;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    gap: 8px !important;
    align-items: center !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-filters:hover {
    border-color: #9ee0fc !important;
    box-shadow: 0 18px 40px rgba(158, 224, 252, 0.2) !important;
}

.gallery-filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    border: 2px solid transparent !important;
    background-color: white !important;
    padding: 10px 22px !important;
    border-radius: 9999px !important;
    font-family: 'Fredoka', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: #475569 !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
}

.filter-btn:hover {
    transform: translateY(-4px) scale(1.05) !important;
    color: #1e293b !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.filter-btn.active {
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
}

.filter-btn.active[data-filter="all"] {
    background: linear-gradient(135deg, #a6e1fa 0%, #3b82f6 100%) !important;
    border-color: #3b82f6 !important;
}

.filter-btn.active[data-filter="ecole"] {
    background: linear-gradient(135deg, #fffae0 0%, #ffe97d 100%) !important;
    border-color: #eab308 !important;
    color: #854d0e !important;
}

.filter-btn.active[data-filter="maison"] {
    background: linear-gradient(135deg, #fff1f2 0%, #ffb7d5 100%) !important;
    border-color: #db2777 !important;
    color: #9d174d !important;
}

.filter-btn.active[data-filter="theatre"] {
    background: linear-gradient(135deg, #f0f9ff 0%, #a6e1fa 100%) !important;
    border-color: #0284c7 !important;
    color: #075985 !important;
}

.filter-btn.active[data-filter="pet-world"] {
    background: linear-gradient(135deg, #fff7ed 0%, #ffb57b 100%) !important;
    border-color: #ea580c !important;
    color: #9a3412 !important;
}

.filter-btn.active[data-filter="hopital"] {
    background: linear-gradient(135deg, #e0f2fe 0%, #9ee0fc 100%) !important;
    border-color: #0284c7 !important;
    color: #0369a1 !important;
}

.filter-btn.active[data-filter="police"] {
    background: linear-gradient(135deg, #eff6ff 0%, #82b3ff 100%) !important;
    border-color: #2563eb !important;
    color: #1e3a8a !important;
}

.filter-btn.active[data-filter="restaurant"] {
    background: linear-gradient(135deg, #fff5f5 0%, #ff9e9e 100%) !important;
    border-color: #dc2626 !important;
    color: #991b1b !important;
}

.filter-btn.active[data-filter="supermarket"] {
    background: linear-gradient(135deg, #f0fdf4 0%, #9bf3d0 100%) !important;
    border-color: #16a34a !important;
    color: #166534 !important;
}

.filter-btn.active[data-filter="pompier"] {
    background: linear-gradient(135deg, #fff5f5 0%, #ff8fa3 100%) !important;
    border-color: #e11d48 !important;
    color: #9f1239 !important;
}

.filter-btn.active[data-filter="divers"] {
    background: linear-gradient(135deg, #f3e8ff 0%, #c084fc 100%) !important;
    border-color: #a855f7 !important;
    color: #6b21a8 !important;
}

.filter-btn.active[data-filter="mecanicien"] {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%) !important;
    border-color: #64748b !important;
    color: #334155 !important;
}

.filter-btn.active[data-filter="pilote"] {
    background: linear-gradient(135deg, #f0fdfa 0%, #a7f3d0 100%) !important;
    border-color: #0d9488 !important;
    color: #115e59 !important;
}

/* Birthday Page Filters & Custom Festive Bar */
.birthday-filters-bar {
    border: 3px dashed #ffb7d5 !important;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%) !important;
    box-shadow: 0 15px 35px rgba(255, 183, 213, 0.15) !important;
    transition: all 0.3s ease !important;
}

.birthday-filter-btn {
    border: 2px solid transparent !important;
    background-color: white !important;
    border-radius: 9999px !important;
    font-family: 'Fredoka', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    padding: 10px 22px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.birthday-filter-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 18px rgba(255, 183, 213, 0.25) !important;
}

.birthday-filter-btn.active {
    color: white !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.birthday-filter-btn.active[data-filter="all"] {
    background: linear-gradient(135deg, #9ee0fc 0%, #3b82f6 100%) !important;
    border-color: #3b82f6 !important;
}

.birthday-filter-btn.active[data-filter="theme-sport"] {
    background: linear-gradient(135deg, #fef08a 0%, #eab308 100%) !important;
    border-color: #eab308 !important;
    color: #713f12 !important;
}

.birthday-filter-btn.active[data-filter="theme-filles"] {
    background: linear-gradient(135deg, #fbcfe8 0%, #db2777 100%) !important;
    border-color: #db2777 !important;
}

.birthday-filter-btn.active[data-filter="theme-autres"] {
    background: linear-gradient(135deg, #a7f3d0 0%, #059669 100%) !important;
    border-color: #059669 !important;
}

/* ── GALLERY GRID ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 cols on mobile */
    gap: 12px;
    grid-auto-rows: 220px;
    margin-bottom: 2rem;
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* 1 col on very small screens */
    }
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Clown image spans 2 cols on mobile if it fits, or adjust */
.main-clown {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 400px) {
    .main-clown {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ── TESTIMONIALS ── */
.testimonials-slider {
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-bubbles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.bubble {
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s;
}

.bubble:hover {
    transform: translateY(-4px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    /* slate-300 */
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #475569;
    /* slate-600 */
    transform: scale(1.2);
}

/* ── CONTACT & MAP ── */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
}

.fun-info-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.map-embed {
    width: 100%;
    height: 250px;
    /* Specific mobile height */
    min-height: 250px;
}

.map-embed iframe {
    height: 250px;
}

/* ── FOOTER ── */
footer {
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-logo img {
    height: 160px;
    margin: 0 auto 10px;
}

.footer-decorations {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 2;
}

.footer-decor-group {
    position: absolute;
    bottom: 0;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    transform: scale(0.7);
    transform-origin: bottom center;
}

.footer-decor-group svg {
    height: 100%;
    width: auto;
    overflow: visible;
}

.decor-hills {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
}

.decor-hills svg {
    width: 100%;
    height: 100%;
}

@keyframes ear-flap {

    0%,
    100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(1.2);
    }
}

@keyframes neck-sway {

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

    50% {
        transform: rotate(-3deg);
    }
}

@keyframes bird-fly {

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

    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

@keyframes wing-flap {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.3);
    }
}

@keyframes tail-wag {

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

    50% {
        transform: rotate(15deg);
    }
}

/* Application of animations */
.anim-sway {
    animation: sway-slow 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.anim-ear {
    animation: ear-flap 3s ease-in-out infinite;
    transform-origin: left center;
}

.anim-neck {
    animation: neck-sway 5s ease-in-out infinite;
    transform-origin: bottom center;
}

.anim-wing {
    animation: wing-flap 0.3s ease-in-out infinite alternate;
    transform-origin: center;
}

.anim-tail {
    animation: tail-wag 1s ease-in-out infinite;
    transform-origin: left bottom;
}

@keyframes blink {

    0%,
    90%,
    100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0.1);
    }
}

.eye-blink {
    animation: blink 4s infinite;
    transform-origin: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.map-embed {
    flex: 1.5;
    min-height: 280px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 4px solid #a6e1fa;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

footer {
    background-color: #a6e1fa;
    position: relative;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* ── TABLET PORTRAIT (min-width: 601px) ── */
@media (min-width: 601px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
    }

    .main-clown {
        grid-column: span 1;
        grid-row: span 2;
    }

    .testimonial-bubbles {
        flex-direction: row;
    }

    .bubble {
        flex: 1;
    }

    .footer-decor-group {
        height: 130px;
        transform: scale(0.85);
    }
}

/* ── TABLET LANDSCAPE (min-width: 769px) ── */
@media (min-width: 769px) {

    .hero>.max-w-6xl {
        grid-template-areas: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
    }

    .hero-content {
        display: block;
    }

    .hero-content h1 {
        grid-area: auto;
    }

    .hero-content p {
        grid-area: auto;
    }

    .hero-content .flex {
        grid-area: auto;
        justify-content: flex-start;
    }

    .hero-image-wrapper {
        grid-area: auto;
        width: auto;
        margin: 0;
    }

    .hero-image-wrapper>div {
        height: 420px !important;
    }

    .floating-el {
        transform: scale(1);
    }

    @keyframes float {
        0% {
            transform: translateY(0px) rotate(0deg) scale(1);
        }

        100% {
            transform: translateY(-18px) rotate(8deg) scale(1);
        }
    }

    .wave-bottom svg {
        height: 120px;
    }

    .about-collage {
        position: relative;
        height: 380px;
        min-width: 360px;
        flex: 1;
        display: block;
        /* Disable grid for absolute layout */
    }

    .collage-img {
        position: absolute;
        height: auto;
    }

    .img-1 {
        width: 185px;
        height: 185px;
        top: 0;
        left: 15px;
        transform: rotate(-5deg);
    }

    .img-2 {
        width: 160px;
        height: 155px;
        top: 25px;
        right: 15px;
        transform: rotate(5deg);
    }

    .img-3 {
        width: 195px;
        height: 195px;
        bottom: 15px;
        left: 0;
        transform: rotate(3deg);
    }

    .img-4 {
        width: 215px;
        height: 155px;
        bottom: 0;
        right: 5px;
        transform: rotate(-3deg);
    }

    .about-text {
        flex: 1;
    }

    .contact-container {
        flex-direction: row;
    }

    .map-embed {
        flex: 1.5;
        height: auto;
    }

    .map-embed iframe {
        height: 100%;
    }

    .footer-decorations {
        height: 180px;
    }

    .footer-decor-group {
        transform: scale(1);
    }
}

/* ── LAPTOP (min-width: 1025px) ── */
@media (min-width: 1025px) {
    .nav-menu {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 270px;
        max-width: 1100px;
        margin: 0 auto 3rem;
    }

    .main-clown {
        grid-row: span 2;
    }

    .kids-navbar {
        padding: 8px 24px;
    }

    .nav-brand img {
        height: 70px;
    }

    .nav-link {
        font-size: 0.88rem;
        padding: 6px 14px;
    }

    .nav-cta {
        font-size: 0.88rem;
        padding: 10px 22px;
    }
}

/* ── DESKTOP (min-width: 1281px) ── */
@media (min-width: 1281px) {
    .kids-navbar {
        max-width: 1200px;
    }

    .nav-brand img {
        height: 80px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 8px 18px;
    }

    .nav-cta {
        font-size: 0.95rem;
        padding: 12px 26px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

/* ── SCROLL REVEAL ── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure hero is always visible */
#home.reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

/* ── REGULATIONS PAGE SPECIFIC ── */
.reg-hero {
    background: linear-gradient(135deg, #fdf0d5 0%, #ffb7d5 100%);
    padding: 120px 20px 60px;
    text-align: center;
    border-radius: 0 0 80px 80px;
}

.reg-container {
    max-width: 1100px;
    margin: -40px auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.reg-card {
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reg-card.blue {
    border-bottom: 6px solid var(--nav-blue);
}

.reg-card.green {
    border-bottom: 6px solid var(--nav-green);
}

.reg-card.yellow {
    border-bottom: 6px solid #ffe97d;
}

.reg-card.orange {
    border-bottom: 6px solid var(--nav-orange);
}

.reg-card.pink {
    border-bottom: 6px solid var(--nav-pink);
}

.reg-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.reg-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.reg-card p,
.reg-card ul {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.reg-card ul {
    list-style: none;
    padding-left: 0;
}

.reg-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.reg-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: currentColor;
    font-weight: bold;
}

.reg-highlight {
    background-color: #fef9c3;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
}

.reg-warning {
    color: #dc2626;
    font-weight: 700;
    margin-top: auto;
    padding-top: 15px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #333;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
    .reg-grid {
        grid-template-columns: 1fr;
    }

    .reg-hero h1 {
        font-size: 2.2rem;
    }
}

/* ══════════════════════════════════════════════════════
   BOOKING / INSCRIPTION FORM STYLES
   Added for the online registration section (#book)
   ══════════════════════════════════════════════════════ */

/* Cards */
.book-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.book-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.book-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.book-card-body {
    padding: 24px;
}

/* Grid layout for form fields */
.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .book-grid {
        grid-template-columns: 1fr;
    }
}

.col-span-full {
    grid-column: 1 / -1;
}

/* Form fields */
.book-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.book-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.book-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s;
    outline: none;
}

.book-input:focus {
    border-color: #60a5fa;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.book-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Children blocks */
.child-block {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.child-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 14px;
    padding: 4px 12px;
    background: #dcfce7;
    border-radius: 10px;
}

/* Loading overlay for form */
.book-loading {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.book-loading .spinner {
    width: 56px;
    height: 56px;
    border: 5px solid #e2e8f0;
    border-top: 5px solid #f97316;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── HERO CAROUSEL / SLIDER TRANSITIONS ── */
.hero-slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.03);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 20;
}

.slide-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
}

/* Float Animation delay helpers */
.floating-el:nth-child(1) {
    animation-delay: 0s;
}

.floating-el:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-el:nth-child(3) {
    animation-delay: 1s;
}

.floating-el:nth-child(4) {
    animation-delay: 1.5s;
}

.floating-el:nth-child(5) {
    animation-delay: 2s;
}

.floating-el:nth-child(6) {
    animation-delay: 2.5s;
}

.floating-el:nth-child(7) {
    animation-delay: 3s;
}

/* ── GALLERY ITEM HOVER OVERLAYS ── */
.gallery-item {
    position: relative;
    border-radius: 24px !important;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    opacity: 1;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-badge {
    transition: all 0.3s ease;
}

/* Hover effects per category on desktop */
@media (hover: hover) {

    .gallery-overlay h3,
    .gallery-overlay p,
    .gallery-overlay .gallery-badge {
        transform: translateY(12px);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-item:hover .gallery-overlay h3,
    .gallery-item:hover .gallery-overlay p,
    .gallery-item:hover .gallery-overlay .gallery-badge {
        transform: translateY(0);
    }

    /* School (Pastel Yellow) */
    .gallery-item.school:hover .gallery-overlay {
        background: rgba(254, 240, 138, 0.96);
        color: #1f2937 !important;
    }

    .gallery-item.school:hover .gallery-badge {
        background-color: #1f2937 !important;
        color: #fde047 !important;
    }

    /* Birthdays (Pastel Pink) */
    .gallery-item.birthdays:hover .gallery-overlay {
        background: rgba(255, 183, 213, 0.96);
        color: #1f2937 !important;
    }

    .gallery-item.birthdays:hover .gallery-badge {
        background-color: #1f2937 !important;
        color: #ffb7d5 !important;
    }

    /* Holidays (Pastel Green) */
    .gallery-item.holidays:hover .gallery-overlay {
        background: rgba(167, 243, 208, 0.96);
        color: #1f2937 !important;
    }

    .gallery-item.holidays:hover .gallery-badge {
        background-color: #1f2937 !important;
        color: #34d399 !important;
    }

    /* Animals (Pastel Blue) */
    .gallery-item.animals:hover .gallery-overlay {
        background: rgba(186, 230, 253, 0.96);
        color: #1f2937 !important;
    }

    .gallery-item.animals:hover .gallery-badge {
        background-color: #1f2937 !important;
        color: #38bdf8 !important;
    }
}

/* Touch fallback: set nice color badges */
@media (hover: none) {
    .gallery-item.school .gallery-badge {
        background-color: #fde047;
        color: #1f2937;
    }

    .gallery-item.birthdays .gallery-badge {
        background-color: #ffb7d5;
        color: #1f2937;
    }

    .gallery-item.holidays .gallery-badge {
        background-color: #34d399;
        color: #1f2937;
    }

    .gallery-item.animals .gallery-badge {
        background-color: #38bdf8;
        color: #1f2937;
    }
}

/* ── ACTIVITIES SECTION STYLES ── */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.activity-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 4px solid #f8fafc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card.border-pink-300 {
    border-color: #fce7f3;
}

.activity-card.border-green-300 {
    border-color: #dcfce7;
}

.activity-card.border-blue-300 {
    border-color: #e0f2fe;
}

.activity-card.border-yellow-300 {
    border-color: #fef9c3;
}

.activity-card.border-orange-300 {
    border-color: #ffedd5;
}

.activity-card.border-purple-300 {
    border-color: #f3e8ff;
}

.activity-card.border-pink-200 {
    border-color: #fce7f3;
}

.activity-card.border-emerald-300 {
    border-color: #d1fae5;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    background-color: var(--card-hover-bg, #ffffff);
}

.activity-img-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.activity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover .activity-img-wrapper img {
    transform: scale(1.08);
}

.activity-icon-badge {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
    z-index: 10;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-icon-badge {
    transform: scale(1.15) rotate(-5deg);
}

.activity-card-body {
    padding: 30px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 641px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── MOBILE MEDIA QUERIES (2 COLUMNS GRID) ── */
@media (max-width: 640px) {

    /* 1. Activities grid elements */
    .activity-card-body {
        padding: 16px 12px 14px !important;
    }

    .activity-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .activity-card p {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
    }

    .activity-img-wrapper {
        height: 110px !important;
    }

    .activity-icon-badge {
        width: 36px !important;
        height: 36px !important;
        bottom: 8px !important;
        right: 12px !important;
        font-size: 0.95rem !important;
        border-width: 2px !important;
        border-radius: 12px !important;
    }

    /* 2. Universes/Ateliers layout elements (activity-item-card) */
    .activity-item-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 16px 12px !important;
        gap: 12px !important;
    }

    .activity-item-card .icon-bounce {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
    }

    .activity-item-card .icon-bounce svg {
        width: 26px !important;
        height: 26px !important;
    }

    .activity-item-card h4 {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }

    .activity-item-card p {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
    }
}

/* Vertex Digital link hover effect */
.vertex-link {
    transition: all 0.3s ease-in-out;
}
.vertex-link:hover {
    color: #38bdf8 !important; /* Sky Blue */
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.7), 0 0 15px rgba(56, 189, 248, 0.4);
}