:root {
    --primary: #FF9F43;
    --secondary: #54A0FF;
    --accent: #1DD1A1;
    --dark: #2D3436;
    --light: #F9F9F9;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: var(--light);
    color: var(--dark);
}

html {
    scroll-behavior: smooth;
}

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

/* ===== ALERT BANNER (actualites) ===== */
.alert-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    font-size: 0.95rem;
    text-align: center;
}
.alert-banner button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
}
.alert-banner button:hover { opacity: 1; }

/* ===== HEADER & NAV ===== */
header {
    background: white;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul a {
    text-decoration: none;
    color: var(--dark);
    font-weight: bold;
    transition: color 0.3s;
}

nav ul a:hover,
nav ul a.active {
    color: var(--primary);
}

.btn-reserve {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-reserve:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,159,67,0.4);
}

/* Mobile hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin: 0 0 10px;
}

.hero p {
    font-size: 1.3rem;
    margin: 0 0 20px;
    opacity: 0.9;
}

.btn-main {
    background: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255,159,67,0.5);
}

/* ===== SECURITY BAR ===== */
.security-bar {
    display: flex;
    justify-content: space-around;
    background: var(--secondary);
    color: white;
    padding: 20px 5%;
    flex-wrap: wrap;
    gap: 10px;
}

.security-bar .picto {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1rem;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 50px 5%;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px 40px;
}
.page-header h1 {
    font-size: 2.5rem;
    margin: 10px 0;
}
.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}
.page-header .sens-badge,
.page-header .badge {
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    color: white !important;
    border-color: rgba(255,255,255,0.5) !important;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    text-align: center;
    background: var(--light);
}

.booking-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.booking-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    width: 340px;
    border-top: 5px solid var(--primary);
    text-align: left;
}

.booking-card h3 {
    color: var(--primary);
    margin-top: 0;
}

.booking-card p {
    color: #666;
    font-size: 0.95rem;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
    width: 100%;
    margin: 8px 0;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,159,67,0.15);
}

.btn-play {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-play:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(29,209,161,0.4);
}

/* ===== MENU / QR CODE ===== */
.menu-qr {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    text-align: center;
}

.menu-content {
    max-width: 500px;
    margin: 0 auto;
}

.menu-content h2 {
    color: var(--dark);
}

.qr-placeholder {
    font-size: 4rem;
    margin: 20px 0;
}

.btn-alt {
    display: inline-block;
    background: var(--dark);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}
.btn-alt:hover {
    transform: scale(1.05);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #eee;
    text-align: center;
}

.review-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.review {
    background: white;
    padding: 25px;
    border-radius: 15px;
    max-width: 400px;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.review p {
    margin: 0 0 12px;
    line-height: 1.6;
}

.review span {
    font-style: normal;
    font-weight: bold;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== CARDS GRID (formules, menu, infos) ===== */
.cards-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--primary);
    margin-top: 10px;
}

.card .price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--accent);
}

/* ===== INFO CARDS ===== */
.infos-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #eee;
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}
.info-card:hover {
    transform: translateY(-3px);
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.info-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text {
    color: #666;
    font-size: 0.9rem;
}

/* ===== FORMULES SECTION ===== */
.formules-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.formule-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    width: 280px;
    text-align: center;
    border-top: 5px solid var(--primary);
    transition: transform 0.3s;
}
.formule-card:hover {
    transform: translateY(-5px);
}
.formule-card.popular {
    border-top-color: var(--accent);
    box-shadow: 0 10px 30px rgba(29,209,161,0.2);
}

.formule-card h3 {
    color: var(--dark);
    margin-top: 0;
}

.formule-card .formule-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    margin: 15px 0;
}

.formule-card ul {
    text-align: left;
    padding-left: 20px;
    color: #555;
    line-height: 2;
}

.formule-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.formule-name {
    font-weight: bold;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.formule-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.badge-popular {
    display: inline-block;
    background: rgba(29,209,161,0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.badge-disco {
    display: inline-block;
    background: rgba(84,160,255,0.15);
    color: var(--secondary);
    border: 1px solid var(--secondary);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* ===== EVENT CARDS ===== */
.events-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.event-card:hover {
    transform: translateY(-5px);
}

.event-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-num {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    padding: 5px 12px;
    border-radius: 8px;
}

.event-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(29,209,161,0.15);
    color: var(--accent);
    border: 1px solid var(--accent);
    font-weight: bold;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
}

.event-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 15px 15px;
    color: white;
}
.event-info h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: white;
}
.event-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ===== MENU GRID ===== */
.menu-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.menu-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    width: calc(50% - 10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}
.menu-card:hover {
    transform: translateY(-2px);
}
.menu-card .menu-name {
    font-weight: bold;
}
.menu-card .menu-desc {
    color: #888;
    font-size: 0.85rem;
}
.menu-card .menu-price {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.1rem;
    white-space: nowrap;
}

/* ===== GLASS CARD (tarifs table, etc) ===== */
.glass-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
}
.tarif-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
}
.tarif-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}
.tarif-table tr:last-child td {
    border-bottom: none;
}

/* ===== HORAIRES ===== */
.horaires-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.horaire-item {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    min-width: 180px;
    text-align: center;
}

.horaire-jour {
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 5px;
}

.horaire-heure {
    color: #666;
    font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: bold;
    margin-bottom: 3px;
}

.contact-value {
    color: #666;
}

.contact-form {
    flex: 1;
    min-width: 280px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 8px 0;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,159,67,0.15);
}

/* ===== BUTTONS (generic) ===== */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,159,67,0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid var(--primary);
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ===== BADGES ===== */
.sens-badge,
.badge {
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.badge-creneau {
    display: inline-block;
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin: 4px;
}

/* ===== CHECK LIST ===== */
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ===== FLEX GRID (two-col) ===== */
.flex-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.flex-grid > * {
    flex: 1;
    min-width: 280px;
}

/* ===== GALERIE ===== */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 30px auto 0;
}

.galerie-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.galerie-item:hover img {
    transform: scale(1.08);
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-text {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* ===== SECTION WRAP (content sections) ===== */
.section-wrap {
    padding: 60px 5%;
    position: relative;
}
.section-wrap:nth-child(even) {
    background: #f3f3f3;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px 5%;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-grid > * {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-slogan {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul a:hover {
    color: var(--primary);
}

.footer-col ul li:not(:has(a)) {
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding: 20px 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #888;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== WAVE SEPARATOR (hidden in new design) ===== */
.wave-sep {
    display: none;
}

/* ===== RESERVATION FORM (anniversaires page) ===== */
.reservation-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 30px auto 0;
    border-top: 5px solid var(--primary);
}

.reservation-form label {
    display: block;
    font-weight: bold;
    margin: 12px 0 5px;
    color: var(--dark);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,159,67,0.15);
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
    border-top: 5px solid var(--accent);
}

/* ===== MAP ===== */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        gap: 15px;
    }
    nav ul.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .btn-reserve {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .security-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .booking-card {
        width: 100%;
    }

    .menu-card {
        width: 100%;
    }

    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flex-grid {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

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

    .hero {
        min-height: 50vh;
    }
}

/* ===== VAPEUR / PARTICLES / SVG (legacy - hidden) ===== */
.vapeur-wrap,
.sound-waves,
#particles-js,
.hero-overlay,
#cursor-dot,
#cursor-ring,
#loader,
.scroll-hint,
.particle {
    display: none !important;
}

/* ===== IMG PLACEHOLDER (legacy images) ===== */
.img-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: none !important;
}
.img-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.reveal-img {
    border-radius: 15px;
    overflow: hidden;
}
