/* ============================================
   MatelooKids — Main Stylesheet
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    --ocean-deep: #0B3D6B;
    --ocean-mid: #1565A0;
    --ocean-light: #42A5D6;
    --ocean-surface: #81D4FA;
    --sand: #FFF3E0;
    --sand-dark: #FFE0B2;
    --coral: #fe6722;
    --coral-dark: #e55510;
    --sun: #FFD54F;
    --sun-dark: #FFB300;
    --seafoam: #26C6A0;
    --seafoam-dark: #00897B;
    --purple-fun: #AB47BC;
    --white: #FFFFFF;
    --text-dark: #1A2A3A;
    --text-light: #546E7A;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(11,61,107,0.12);
    --shadow-lg: 0 8px 40px rgba(11,61,107,0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: #f6f2eb;
    overflow-x: hidden;
    line-height: 1.6;
}
h1, h2, h3, h4, h5 { font-family: 'Baloo 2', cursive; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25px) translateY(-5px); }
    100% { transform: translateX(0) translateY(0); }
}
@keyframes bubbleUp {
    0% { transform: translateY(100%) scale(0.4); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-120vh) scale(1); opacity: 0; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
@keyframes swimRight {
    0% { transform: translateX(-100px) translateY(0) scaleX(1); opacity: 0; }
    10% { opacity: 0.6; }
    50% { transform: translateX(50vw) translateY(-30px) scaleX(1); opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateX(110vw) translateY(10px) scaleX(1); opacity: 0; }
}
@keyframes swimLeft {
    0% { transform: translateX(110vw) translateY(0) scaleX(-1); opacity: 0; }
    10% { opacity: 0.5; }
    50% { transform: translateX(40vw) translateY(20px) scaleX(-1); opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateX(-100px) translateY(-15px) scaleX(-1); opacity: 0; }
}
@keyframes rays {
    0%, 100% { opacity: 0.03; transform: rotate(-15deg) scaleY(1); }
    50% { opacity: 0.08; transform: rotate(-12deg) scaleY(1.1); }
}
@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    75% { transform: translateY(10px) rotate(-2deg); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUBBLES DECORATION ===== */
.bubbles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bubble {
    position: absolute;
    bottom: -80px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(66,165,214,0.15));
    border-radius: 50%;
    animation: bubbleUp linear infinite;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #ffffff;
    padding: 0 2rem;
    transition: var(--transition);
    overflow: visible;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    position: relative;
}
.nav-logo {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1001;
}
.nav-logo .nav-logo-img {
    height: 75px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}
.nav-logo .nav-logo-img:hover {
    transform: scale(1.06);
}
.nav-logo span {
    color: var(--sun);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a {
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 3px;
    background: var(--sun);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(254,103,34,0.4);
    border: 2px solid transparent !important;
    font-size: 0.95rem !important;
}
.nav-cta:hover {
    background: white !important;
    border-color: #fe6722 !important;
    color: #fe6722 !important;
    box-shadow: 0 8px 24px rgba(254,103,34,0.2);
    transform: translateY(-2px);
}
.nav-cta::after { display: none !important; }
.nav-cta-arrow {
    display: inline-block;
    font-size: 0.7rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}
.nav-dropdown.open .nav-cta-arrow {
    transform: rotate(180deg);
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    background: var(--coral);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 14px 36px rgba(255,112,67,0.32);
    z-index: 2000;
    overflow: hidden;
    margin-top: 0;
    animation: dropdownFadeIn 0.22s cubic-bezier(0.4,0,0.2,1);
}
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}
/* Bouton CTA en état ouvert : coins du bas plats pour fusionner avec le menu */
.nav-dropdown.open .nav-cta {
    border-radius: 25px 25px 0 0 !important;
    box-shadow: none !important;
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown-item,
.nav-dropdown-item:link,
.nav-dropdown-item:visited,
.nav-dropdown-item:focus,
.nav-dropdown-item:active {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 22px !important;
    background: var(--coral) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    transition: background 0.2s ease !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.nav-dropdown-item:last-child {
    border-bottom: none;
    padding-bottom: 16px !important;
}
.nav-dropdown-item:first-child {
    padding-top: 16px !important;
}
.nav-dropdown-item:hover {
    background: var(--coral-dark) !important;
    transform: none !important;
}
.nav-dropdown-item::after { display: none !important; }
.nav-dropdown-city {
    font-family: 'Baloo 2', cursive;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    flex: 1;
}
.nav-dropdown-arrow {
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
    color: var(--white);
}
.nav-dropdown-item:hover .nav-dropdown-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #FF6422;
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    overflow: hidden;
    padding: 90px 2rem 60px;
}
/* Organic wave shapes — layered blobs for depth */
.hero::before {
    display: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 C240,100 480,0 720,50 C960,100 1200,0 1440,50 L1440,100 L0,100 Z' fill='%230099FF'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
    z-index: 15;
    pointer-events: none;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.hero-fish {
    display: none;
}
.hero-fish.f1 { top: 18%; animation: swimRight 18s linear infinite; font-size: 2.5rem; }
.hero-fish.f2 { top: 35%; animation: swimLeft 22s linear infinite 4s; font-size: 1.8rem; }
.hero-fish.f3 { top: 55%; animation: swimRight 25s linear infinite 8s; font-size: 3rem; }
.hero-fish.f4 { top: 72%; animation: swimLeft 20s linear infinite 12s; font-size: 2.2rem; }
.hero-fish.f5 { top: 45%; animation: swimRight 30s linear infinite 2s; font-size: 1.5rem; }
.hero-seaweed {
    display: none;
}
.hero-seaweed:nth-child(7) { left: 3%; animation-delay: 0s; font-size: 3.5rem; }
.hero-seaweed:nth-child(8) { left: 12%; animation-delay: 0.8s; font-size: 5rem; }
.hero-seaweed:nth-child(9) { right: 8%; animation-delay: 1.5s; }
.hero-seaweed:nth-child(10) { right: 18%; animation-delay: 0.3s; font-size: 3rem; }
.hero-particles {
    display: none;
}
.h-particle {
    position: absolute;
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
    animation: gentleFloat 12s linear infinite;
}
.h-particle:nth-child(odd) { width: 8px; height: 8px; background: rgba(255,255,255,0.6); }
.h-particle:nth-child(3n) { width: 4px; height: 4px; background: rgba(255,255,255,0.35); }
/* ===== SCUBA DIVER KIDS ===== */
@keyframes scubaSwimRight {
    0%   { transform: translateX(-120px) translateY(0) scaleX(-1); opacity: 0; }
    5%   { opacity: 0.7; }
    50%  { transform: translateX(50vw) translateY(-20px) scaleX(-1); opacity: 0.7; }
    95%  { opacity: 0.7; }
    100% { transform: translateX(110vw) translateY(10px) scaleX(-1); opacity: 0; }
}
@keyframes scubaSwimLeft {
    0%   { transform: translateX(110vw) translateY(0) scaleX(1); opacity: 0; }
    5%   { opacity: 0.7; }
    50%  { transform: translateX(40vw) translateY(15px) scaleX(1); opacity: 0.7; }
    95%  { opacity: 0.7; }
    100% { transform: translateX(-120px) translateY(-10px) scaleX(1); opacity: 0; }
}
@keyframes scubaBubble {
    0%   { transform: translateY(0) scale(0.5); opacity: 0.8; }
    100% { transform: translateY(-40px) scale(1.2); opacity: 0; }
}
.scuba-kid {
    display: none;
}
.sk-body {
    font-size: 2.8rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.sk-bubbles {
    position: absolute;
    top: -5px;
    left: 50%;
}
.sk-bubbles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: scubaBubble 2s ease-out infinite;
}
.sk-bubbles span:nth-child(1) { left: 0; animation-delay: 0s; }
.sk-bubbles span:nth-child(2) { left: 8px; animation-delay: 0.6s; width: 4px; height: 4px; }
.sk-bubbles span:nth-child(3) { left: -4px; animation-delay: 1.2s; width: 5px; height: 5px; }
.sk1 {
    top: 60%;
    animation: scubaSwimRight 20s linear infinite;
}
.sk1 .sk-body { font-size: 2.5rem; }
.sk2 {
    top: 40%;
    animation: scubaSwimLeft 25s linear infinite 5s;
}
.sk2 .sk-body { font-size: 3rem; }


/* ===== WAVY SECTION TRANSITIONS ===== */
/* Hero bottom wave */
.hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    z-index: 5;
    pointer-events: none;
}
.hero-wave-bottom svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
}
.wave-bubbles-container {
    position: absolute;
    right: 2%;
    bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 18px;
    z-index: 8;
    pointer-events: none;
}
.wave-bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.72rem;
    text-align: center;
    pointer-events: auto;
    animation: slideUp 0.7s ease-out backwards;
    width: 110px;
}
.bubble-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.wave-bubble:hover .bubble-circle {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.bubble-red {
    background: #FF5555;
    color: var(--white);
}
.bubble-green {
    background: #A8D944;
    color: #333;
}
.bubble-blue {
    background: #5BB3FF;
    color: var(--white);
}
.bubble-yellow {
    background: #FFD54F;
    color: #333;
}
.wave-bubble-1 {
    animation-delay: 0.1s;
}
.wave-bubble-2 {
    animation-delay: 0.2s;
}
.wave-bubble-3 {
    animation-delay: 0.3s;
}
.wave-bubble-4 {
    animation-delay: 0.4s;
}
.wave-bubble p {
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.wave-mascotte {
    position: absolute;
    right: 5%;
    bottom: -180px;
    height: 650px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    pointer-events: none;
    z-index: 50;
}
.hero-mascotte {
    position: absolute;
    right: 20%;
    top: 62%;
    height: 80%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
    pointer-events: none;
    z-index: 20;
}

/* Common wave pseudo-element base */
.announcement::after,
.video-section::after,
.birthday::after,
.activities::after,
.snack::after,
.pratique::after,
.horaires::after,
.avis::after,
.gallery::after,
.newsletter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 5;
}
/* Announcement → Parks (sand) */
.announcement::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,100 L0,100 Z' fill='%23FFF3E0'/%3E%3C/svg%3E");
}
/* Video → Birthday (ocean-deep) */
.video-section::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C360,90 720,10 1080,70 C1260,90 1380,30 1440,50 L1440,100 L0,100 Z' fill='%230B3D6B'/%3E%3C/svg%3E");
}
/* Activities → Events (no wave) */
.activities::after {
    display: none;
}
/* Birthday → Activities (no wave) */
.birthday::after {
    display: none;
}
/* Snack → Pratique (white) */
.snack::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,100 L0,100 Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
/* Pratique → Horaires (ocean-deep) */
.pratique::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C360,90 720,10 1080,70 C1260,90 1380,30 1440,50 L1440,100 L0,100 Z' fill='%230B3D6B'/%3E%3C/svg%3E");
}
/* Horaires → Avis (sand) */
.horaires::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,70 C240,20 480,90 720,40 C960,10 1200,80 1440,30 L1440,100 L0,100 Z' fill='%23FFF3E0'/%3E%3C/svg%3E");
}
/* Avis → Gallery (white) */
.avis::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,100 L0,100 Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
/* Gallery → Newsletter (seafoam) */
.gallery::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 C360,90 720,10 1080,70 C1260,90 1380,30 1440,50 L1440,100 L0,100 Z' fill='%2326C6A0'/%3E%3C/svg%3E");
}
/* Newsletter → Footer (ocean-deep) */
.newsletter::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,70 C240,20 480,90 720,40 C960,10 1200,80 1440,30 L1440,100 L0,100 Z' fill='%230B3D6B'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 28px;
    border-radius: 8px;
    color: var(--sun);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}
.hero-badge .new-dot {
    width: 10px; height: 10px;
    background: var(--coral);
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero h1 .highlight {
    color: var(--sun);
    position: relative;
}
.hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 600;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border: 2px solid transparent;
}
.btn-primary:hover {
    background: white !important;
    border-color: #fe6722;
    color: #fe6722 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}
.btn-sun {
    background: var(--sun);
    color: var(--ocean-deep);
    box-shadow: 0 6px 25px rgba(255,213,79,0.4);
}
.btn-sun:hover {
    background: var(--sun-dark);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    color: var(--ocean-mid);
    border: 2px solid var(--ocean-mid);
}
.btn-outline:hover {
    background: var(--ocean-mid);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-sm { padding: 12px 28px; font-size: 1rem; }

/* Sea creatures deco */
.hero-deco {
    display: none;
}
.hero-deco:nth-child(1) { top: 12%; left: 4%; animation-delay: 0s; font-size: 4.5rem; opacity: 0.3; }
.hero-deco:nth-child(2) { top: 22%; right: 6%; animation-delay: 1.2s; font-size: 5rem; opacity: 0.2; }
.hero-deco:nth-child(3) { bottom: 28%; left: 8%; animation-delay: 2.4s; font-size: 3.5rem; }
.hero-deco:nth-child(4) { top: 42%; right: 12%; animation-delay: 0.6s; font-size: 3rem; }
.hero-deco:nth-child(5) { bottom: 38%; right: 4%; animation-delay: 1.8s; font-size: 5rem; opacity: 0.2; }
.hero-deco:nth-child(6) { top: 65%; left: 15%; animation-delay: 3s; font-size: 2.5rem; }

/* ===== SECTION COMMONS ===== */
.section {
    padding: 100px 2rem 140px;
    position: relative;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    display: inline-block;
    background: var(--ocean-surface);
    color: var(--ocean-deep);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'DynaPuff', cursive;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ocean-deep);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* ===== NEW PARK ANNOUNCEMENT ===== */
.announcement {
    background: linear-gradient(135deg, #ff6a00 0%, var(--coral) 30%, var(--purple-fun) 70%, #6a1b9a 100%);
    padding: 80px 2rem 120px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.announcement::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

/* --- Confetti --- */
.promo-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    top: -20px;
    animation: confetti-fall 4s linear infinite;
    animation-delay: calc(var(--i) * 0.5s);
}
.confetti-piece:nth-child(1)  { left: 5%;  background: var(--sun); width: 8px; height: 14px; }
.confetti-piece:nth-child(2)  { left: 15%; background: var(--seafoam); width: 12px; height: 8px; border-radius: 50%; }
.confetti-piece:nth-child(3)  { left: 30%; background: #fff; width: 6px; height: 16px; }
.confetti-piece:nth-child(4)  { left: 45%; background: var(--coral); width: 10px; height: 10px; border-radius: 50%; }
.confetti-piece:nth-child(5)  { left: 60%; background: var(--sun); width: 14px; height: 6px; }
.confetti-piece:nth-child(6)  { left: 72%; background: var(--seafoam); width: 8px; height: 12px; }
.confetti-piece:nth-child(7)  { left: 85%; background: #fff; width: 10px; height: 10px; border-radius: 50%; }
.confetti-piece:nth-child(8)  { left: 93%; background: var(--purple-fun); width: 12px; height: 8px; }

@keyframes confetti-fall {
    0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(calc(100vh + 40px)) rotate(720deg); opacity: 0.3; }
}

.announcement-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.3);
}
.announcement h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.promo-subtitle {
    font-size: 1.25rem;
    margin-bottom: 36px;
    opacity: 0.95;
}

/* --- Gift box card --- */
.promo-gift-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 20px;
    padding: 28px 36px;
    margin: 0 auto 36px;
    max-width: 600px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}
.promo-gift-box:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.promo-gift-icon {
    font-size: 3.5rem;
    animation: gift-bounce 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes gift-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25%      { transform: translateY(-8px) rotate(-5deg); }
    75%      { transform: translateY(-4px) rotate(5deg); }
}
.promo-gift-content {
    flex: 1;
}
.promo-gift-tag {
    display: inline-block;
    background: var(--sun);
    color: #333;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.promo-gift-offer {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.3;
    font-family: 'Baloo 2', cursive;
}
.promo-gift-detail {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
}
.promo-gift-code {
    margin-top: 10px;
    font-size: 1rem;
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 8px;
    letter-spacing: 1px;
}
.promo-gift-code strong {
    font-size: 1.15rem;
    letter-spacing: 2px;
}
.promo-gift-validity {
    margin-top: 6px;
    font-size: 0.78rem;
    opacity: 0.7;
    font-style: italic;
}

/* --- Perks row --- */
.promo-perks {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.promo-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.promo-perk:hover {
    background: rgba(255,255,255,0.25);
}
.promo-perk-icon {
    font-size: 1.5rem;
}
.promo-cta {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* ===== ACTIVITIES ===== */
.activities {
    background: #ffffff;
    padding-top: 160px !important;
    padding-bottom: 100px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.activities .section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.activities .section-header {
    padding: 0 2rem;
}
.activities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,0 L0,0 Z' fill='%230047AB'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 5;
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 0 14px;
}
.activity-card {
    position: relative;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform 0.3s ease;
}
.activity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
    z-index: 0;
}
.activity-card:hover {
    transform: translateY(-4px);
}
.activity-card-body {
    position: relative;
    z-index: 1;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}
.activity-card-title {
    color: #fff;
    font-family: 'Chewy', cursive;
    font-weight: 400;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    margin: 0;
    line-height: 1.15;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.activity-card-desc {
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
.btn-activity {
    display: inline-block;
    background: var(--coral);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 4px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border: 2px solid transparent;
}
.btn-activity:hover {
    background: white !important;
    border-color: #fe6722;
    color: #fe6722 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.activity-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.activity-tag {
    background: var(--sand);
    color: var(--ocean-mid);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ===== BIRTHDAY ===== */
.birthday {
    background: linear-gradient(180deg, #0099FF 0%, #0047AB 100%);
    color: var(--white);
    position: relative;
    overflow: visible;
    z-index: 1;
}
.birthday::before {
    display: none;
}
.birthday-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.birthday-text .section-label {
    background: rgba(255,255,255,0.2);
    color: var(--sun);
}
.birthday-text .section-title {
    color: var(--white);
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 0;
}
.birthday-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.8;
}
.birthday-packages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.birthday-pkg {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.birthday-pkg:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(8px);
}
.birthday-pkg .pkg-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}
.birthday-pkg .pkg-info h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.15rem;
    margin-bottom: 2px;
}
.birthday-pkg .pkg-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* ===== VIDEO ===== */
.video-section {
    background: var(--white);
}

/* Wrapper for deco + player */
.video-player-wrapper {
    max-width: 1020px;
    margin: 0 auto;
    position: relative;
    padding: 30px;
}

/* ---------- Picots Mateloo ---------- */
.video-picots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.video-picots .picot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    animation: picotBounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.15s);
}
/* Top picots */
.video-picots .picot:nth-child(1)  { top: 0; left: 10%; background: var(--coral); }
.video-picots .picot:nth-child(2)  { top: 2px; left: 22%; background: var(--sun); width: 14px; height: 14px; }
.video-picots .picot:nth-child(3)  { top: 0; left: 35%; background: var(--seafoam); }
.video-picots .picot:nth-child(4)  { top: 3px; left: 50%; background: var(--purple-fun); width: 16px; height: 16px; }
.video-picots .picot:nth-child(5)  { top: 0; left: 65%; background: var(--ocean-light); }
.video-picots .picot:nth-child(6)  { top: 2px; left: 78%; background: var(--coral); width: 14px; height: 14px; }
.video-picots .picot:nth-child(7)  { top: 0; left: 90%; background: var(--sun); }
/* Bottom picots */
.video-picots .picot:nth-child(8)  { bottom: 0; left: 8%;  background: var(--seafoam); }
.video-picots .picot:nth-child(9)  { bottom: 2px; left: 20%; background: var(--purple-fun); width: 14px; height: 14px; }
.video-picots .picot:nth-child(10) { bottom: 0; left: 38%; background: var(--sun); }
.video-picots .picot:nth-child(11) { bottom: 3px; left: 55%; background: var(--coral); width: 16px; height: 16px; }
.video-picots .picot:nth-child(12) { bottom: 0; left: 72%; background: var(--ocean-light); }
.video-picots .picot:nth-child(13) { bottom: 2px; left: 88%; background: var(--seafoam); width: 14px; height: 14px; }
/* Left picots */
.video-picots .picot:nth-child(14) { left: 0; top: 20%; background: var(--sun); }
.video-picots .picot:nth-child(15) { left: 2px; top: 40%; background: var(--coral); width: 14px; height: 14px; }
.video-picots .picot:nth-child(16) { left: 0; top: 65%; background: var(--purple-fun); }
.video-picots .picot:nth-child(17) { left: 3px; top: 82%; background: var(--seafoam); width: 16px; height: 16px; }
/* Right picots */
.video-picots .picot:nth-child(18) { right: 0; top: 18%; background: var(--coral); }
.video-picots .picot:nth-child(19) { right: 2px; top: 45%; background: var(--sun); width: 14px; height: 14px; }
.video-picots .picot:nth-child(20) { right: 0; top: 70%; background: var(--ocean-light); }

@keyframes picotBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.35); }
}

/* ---------- Déco enfants ---------- */
.video-deco-kids {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.vdeco {
    position: absolute;
    font-size: 2.2rem;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.15));
    animation: gentleFloat 4s ease-in-out infinite;
}
.vdeco-tl  { top: -8px; left: -8px; animation-delay: 0s; }
.vdeco-tr  { top: -8px; right: -8px; animation-delay: 0.7s; }
.vdeco-bl  { bottom: -8px; left: -8px; animation-delay: 1.4s; }
.vdeco-br  { bottom: -8px; right: -8px; animation-delay: 2.1s; }
.vdeco-top { top: -14px; left: 50%; transform: translateX(-50%); animation-delay: 0.5s; font-size: 2.5rem; }
.vdeco-bottom { bottom: -14px; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }

/* Hide decorations when video is playing */
.video-player-wrapper.playing .video-picots,
.video-player-wrapper.playing .video-deco-kids {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.video-player-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--ocean-deep);
}
.video-player-container video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
}
.video-controls {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(11,61,107,0.95));
    padding: 40px 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: opacity 0.3s;
}
.video-player-container:not(:hover) .video-controls { opacity: 0.6; }
.video-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.video-btn:hover { background: var(--coral); }
.video-btn.play-btn { width: 50px; height: 50px; font-size: 1.3rem; background: var(--coral); }
.video-btn.play-btn:hover { background: var(--coral-dark); }
.video-progress {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.video-progress-bar {
    height: 100%;
    background: var(--coral);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}
.video-time {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}
.video-volume {
    width: 70px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.video-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--sun);
    cursor: pointer;
}
.video-overlay-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,61,107,0.4);
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}
.video-overlay-play:hover { background: rgba(11,61,107,0.3); }
.video-overlay-play.hidden { opacity: 0; pointer-events: none; }
.video-overlay-play .big-play {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: var(--white);
    box-shadow: 0 8px 40px rgba(255,112,67,0.5), 0 0 0 8px rgba(255,112,67,0.2), 0 0 0 16px rgba(255,112,67,0.1);
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}
.video-overlay-play:hover .big-play { transform: scale(1.12); }
.big-play-label {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-family: 'Baloo 2', cursive;
    font-size: 1.15rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}
.video-overlay-play.hidden .big-play-label { display: none; }
.video-player-branding {
    position: absolute;
    top: 16px; left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.video-player-branding img {
    height: 36px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.video-player-branding span {
    color: var(--white);
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    opacity: 0.9;
}

/* ===== SNACK ===== */
.snack {
    background: var(--sand);
}
.snack-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.snack-visual {
    position: relative;
}
.snack-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 400px;
    background: linear-gradient(135deg, var(--ocean-surface) 0%, var(--seafoam) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}
.snack-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}
.snack-float.sf1 { top: -10px; right: -20px; animation-delay: 0s; }
.snack-float.sf2 { bottom: 20px; left: -30px; animation-delay: 1s; }
.snack-text h3 {
    font-size: 2rem;
    color: var(--ocean-deep);
    margin-bottom: 16px;
}
.snack-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.snack-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.snack-highlights span {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ocean-deep);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ===== PRATIQUE ===== */
.pratique {
    background: var(--white);
}
.pratique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.pratique-item {
    background: var(--sand);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.pratique-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.pratique-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.pratique-item h4 {
    color: var(--ocean-deep);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.pratique-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== HORAIRES ===== */
.horaires {
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
    color: var(--white);
}
.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.horaires-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.horaires-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--sun);
}
.horaires-card .park-name {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
}
.horaire-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.horaire-row:last-child { border: none; }
.horaire-day { font-weight: 700; }
.horaire-time { opacity: 0.9; }

/* ===== AVIS / TESTIMONIALS ===== */
.avis {
    background: var(--sand);
}
.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.avis-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.avis-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.avis-stars {
    color: var(--sun-dark);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.avis-card p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 16px;
}
.avis-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avis-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ocean-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--ocean-deep);
}
.avis-author-name { font-weight: 700; }
.avis-author-park { font-size: 0.85rem; color: var(--text-light); }

/* ===== GALLERY ===== */
.gallery {
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}
.gallery-item:hover {
    transform: scale(1.03);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11,61,107,0.2);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-placeholder {
    background: linear-gradient(135deg, var(--ocean-surface), var(--seafoam));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, var(--seafoam) 0%, var(--ocean-light) 100%);
    color: var(--white);
}
.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.newsletter .section-title { color: var(--white); }
.newsletter p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 1.1rem;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    backdrop-filter: blur(8px);
    outline: none;
    transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form input:focus { border-color: var(--white); background: rgba(255,255,255,0.25); }
.newsletter-form button {
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    background: var(--sun);
    color: var(--ocean-deep);
    font-weight: 800;
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover {
    background: var(--sun-dark);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ocean-deep);
    color: var(--white);
    padding: 0;
}
.footer-cta-bar {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    padding: 32px 2rem;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-cta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 16px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
}
.footer-cta-item:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.footer-cta-item .cta-icon { font-size: 2rem; flex-shrink: 0; }
.footer-cta-item .cta-label { font-size: 0.8rem; opacity: 0.8; font-weight: 600; display: block; }
.footer-cta-item .cta-value { display: block; }
.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding: 50px 2rem 40px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
}
.footer-brand .footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}
.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}
.footer-social a:hover {
    transform: translateY(-3px);
}
.footer h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--sun);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul li a {
    opacity: 0.65;
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer ul li a:hover { opacity: 1; color: var(--sun); }
.footer-horaires-block {
    line-height: 1.6;
}
.footer-horaires-mini { margin-bottom: 16px; }
.footer-horaires-mini h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--ocean-surface);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.footer-h-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 3px 0;
    opacity: 0.75;
}
.footer-h-row span:last-child { font-weight: 700; opacity: 1; }
.footer-recruit {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px;
}
.footer-recruit h4 { margin-bottom: 10px; }
.footer-recruit p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 14px;
    line-height: 1.6;
}
.footer-recruit .btn-recruit {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    border: 2px solid transparent;
}
.footer-recruit .btn-recruit:hover { background: white !important; border-color: #fe6722; color: #fe6722 !important; box-shadow: 0 8px 24px rgba(0,0,0,0.15); transform: translateY(-2px); }
.footer-pratique-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 2rem;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.footer-pratique-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 600;
}
.footer-pratique-item .fp-icon { font-size: 1.4rem; }
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .birthday-content { grid-template-columns: 1fr; }
    .snack-content { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .wave-bubbles-container {
        right: 50%;
        transform: translateX(50%);
        bottom: 5px;
        gap: 8px;
    }
    .bubble-circle {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    .wave-bubble {
        width: 72px;
        font-size: 0.6rem;
    }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--ocean-deep);
        padding: 24px 2rem;
        gap: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    }
    .hero { padding: 100px 1rem 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-fish { display: none; }
    .hero-seaweed { display: none; }
    .section { padding: 60px 1rem; }
    .parks-grid { grid-template-columns: 1fr; }
    .horaires-grid { grid-template-columns: 1fr; }
    .promo-perks { gap: 16px; }
    .promo-gift-box { flex-direction: column; text-align: center; padding: 24px 20px; }
    .promo-gift-icon { font-size: 2.8rem; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .footer-cta-bar { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-pratique-bar { gap: 20px; }
    .newsletter-form { flex-direction: column; }
    .snack-float { display: none; }
    .video-controls { padding: 20px 12px 10px; gap: 8px; }
    .video-volume { display: none; }
    .video-time { min-width: 60px; font-size: 0.7rem; }
    .video-btn { width: 36px; height: 36px; font-size: 0.9rem; }
    .video-btn.play-btn { width: 40px; height: 40px; }
}


/* ===== EVENTS ===== */
.events {
    background: #fff;
    padding-top: 100px !important;
}

/* ===== MERCREDI SECTION WAVES ===== */
.mercredi-section {
    position: relative;
    overflow: hidden;
    padding-top: 160px !important;
    padding-bottom: 160px !important;
}
.mercredi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 5;
}
.mercredi-section::after {
    display: none;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,112,67,0.4);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--coral-dark);
    transform: translateY(-4px);
}
