/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E5B700;
    --secondary-color: #D3D3D3;
    --accent-color: #EBDCCB;
    --background-color: #FAFAFA;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    outline: none;
}

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

.nav a:focus {
    outline: none;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}


/* BOOTSTRAP */
/* Inputs Bootstrap : focus en or */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(212, 168, 10, 0.25);
}

/* Checkbox + radio cochés */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Checkbox + radio focus */
.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(212, 168, 10, 0.25);
}

/* Boutons outline (si tu en utilises) */
.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  color: #fff;
}



/* LIEN PERSO */
.a-link {
    color: var(--primary-color);
    text-decoration: none;
}

.a-link:hover {
    text-decoration: underline;
}


/* Main Content */
main {
    margin-top: 0;
}

/* Padding Sections */


/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 4rem;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--accent-color) 100%);
}

.hero-content {
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(229, 183, 0, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #c49a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 183, 0, 0.4);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c49a00 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .cta-button:hover {
    background-color: var(--background-color);
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c49a00 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* A proximité */

.list-group-item-action:focus,
.list-group-item-action:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}


.list-group-item div {
    font-size: 0.8rem !important;
}

.list-group-item.active {
    background-color: var(--background-color) !important;
    /* fond */
    border-color: var(--primary-color) !important;
    /* bordure */
    color: var(--text-color) !important;
    /* texte */
}

/* Section par pages */
.gallery,
.proximite-section,
.contact-section,
.reservation-section,
.conditions-section {
    padding: 2rem 0;
    /* background-color: var(--white); */
    background-color: var(--background-color);
}



/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 90%;
    margin: 5% auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Contact Section */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #c49a00;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--background-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 183, 0, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Conditions Section */

.conditions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.conditions-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
}

.conditions-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.conditions-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.conditions-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.6;
    border-bottom: 1px solid rgba(211, 211, 211, 0.3);
    position: relative;
    padding-left: 1.5rem;
}

.conditions-card li:last-child {
    border-bottom: none;
}

.conditions-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.conditions-footer {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
}

.conditions-footer p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.conditions-footer p:first-child {
    color: var(--text-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: #c49a00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Quand le menu est ouvert, on cache les boutons + / - de Leaflet */
    body.menu-open #mapLeaflet .leaflet-control-container {
        display: none !important;
    }


    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 1rem;
        transition: var(--transition);
        box-shadow: 0 2px 10px var(--shadow);
    }

    .nav a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: var(--transition);
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav a {
        font-size: 1.2rem;
        padding: 1rem;
        border-radius: 10px;
        transition: var(--transition);
    }

    .nav a:hover {
        /* background-color: var(--background-color); */
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0;
    }

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

    .hero-content {
        order: 2;
        padding: 0 1rem;
    }

    .hero-image {
        order: 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .conditions-content {
        grid-template-columns: 1fr;
    }

    .conditions-card {
        padding: 1.5rem;
    }

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

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

    .container {
        padding: 0 15px;
    }
}

/* -------------------------------------------------------------------------------------------------------------------------- */
/* MOBILE */
@media (max-width: 480px) {
    html {
        font-size: 85%;
    }

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

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

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

    .cta-section h2 {
        font-size: 2rem;
    }

    .about h2,
    .features h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .conditions-card {
        padding: 1rem;
    }

    .conditions-card li {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
}

/* Animations au scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ═══════════════════════════════════════════
   PAGE RÉSERVATION
   ═══════════════════════════════════════════ */

.reservation-section {
    padding: 3rem 0 4rem;
}

/* ── Layout côte à côte ── */
.reservation-layout {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 24px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Tarif Card ── */
.tarif-card {
    background: var(--white);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.tarif-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c49a00 100%);
    color: #fff;
    padding: 16px 24px;
    text-align: center;
}

.tarif-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.tarif-card-body {
    padding: 20px;
}

/* Loading & Error */
.tarif-loading {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tarif-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #eee;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: tarifSpin 0.8s linear infinite;
    margin: 0 auto 16px;
}

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

.tarif-error {
    text-align: center;
    padding: 24px;
    color: #e74c3c;
    font-size: 0.9rem;
}

/* ── Calendar ── */
.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cal-nav button {
    background: none;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-light);
    transition: var(--transition);
}

.cal-nav button:hover { background: #f5f5f5; color: var(--text-color); }
.cal-nav button:disabled { opacity: 0.25; cursor: default; }

.cal-month {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 16px;
}

.cal-day-header {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #aaa;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cal-cell {
    text-align: center;
    padding: 6px 2px;
    border-radius: 10px;
    cursor: default;
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    position: relative;
}

.cal-cell.empty { pointer-events: none; }
.cal-cell.past { color: #ddd; pointer-events: none; }

.cal-cell.unavailable {
    color: #d0d0d0;
    pointer-events: none;
}

.cal-cell.unavailable .cal-num {
    text-decoration: line-through;
}

.cal-cell.available {
    color: var(--text-color);
    font-weight: 500;
}

.cal-cell.sel-start,
.cal-cell.sel-end {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(229, 183, 0, 0.4);
}

.cal-cell.in-range {
    background: #fdf3cd;
    color: var(--text-color);
}

.cal-num {
    font-size: 0.9rem;
    line-height: 1.2;
}

.cal-price {
    font-size: 0.6rem;
    color: #c49a00;
    font-weight: 600;
    line-height: 1;
    margin-top: 1px;
}

.cal-cell.sel-start .cal-price,
.cal-cell.sel-end .cal-price {
    color: rgba(255,255,255,0.8);
}

/* Legend */
.cal-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    color: #999;
}

.cal-legend span { display: flex; align-items: center; gap: 6px; }

.cal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.cal-dot.available { background: #e8f4e8; border: 1px solid #a3d9a3; }
.cal-dot.unavailable { background: #f5f5f5; border: 1px solid #ddd; }

/* ── Gold Button ── */
.btn-primary-gold {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(229, 183, 0, 0.3);
    transition: var(--transition);
}

.btn-primary-gold:hover {
    background: #d4a800;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 183, 0, 0.4);
}

.btn-primary-gold:disabled {
    background: var(--primary-color);
    opacity: 0.6;
    transform: none;
}

/* ── Booking Stepper ── */
.booking-stepper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.booking-step {
    display: none;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
}

.booking-step.active {
    display: block;
}

.booking-step.transitioning {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* ── Back button (inside gold header) ── */
.btn-back {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    font-family: inherit;
    transition: var(--transition);
}

.btn-back:hover {
    background: rgba(255,255,255,0.35);
    color: #fff;
}

/* ── Selection / Form Recap ── */
.selection-recap {
    text-align: center;
    padding: 16px;
    background: #fdf3cd;
    border-radius: 12px;
    line-height: 1.6;
}

.selection-dates { font-weight: 600; }
.selection-details { font-size: 0.9rem; color: #666; }

.bg-success-header {
    background: linear-gradient(135deg, #27ae60, #1e8449) !important;
}

/* ── Bootstrap overrides for booking form ── */
.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(229, 183, 0, 0.15);
}

/* ── Booking Card ── */
.booking-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    max-width: 700px;
    margin: 24px auto 0;
    overflow: hidden;
}

.booking-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c49a00 100%);
    color: #fff;
    padding: 16px 24px;
    text-align: center;
}

.booking-card-header h3 { font-size: 1.1rem; font-weight: 600; margin: 0; }

.booking-card-body {
    padding: 0;
}

.booking-card-body iframe {
    width: 100%;
    border: none;
}

/* ── Toast notifications ── */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 380px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-error { background: #e74c3c; }
.toast-success { background: #27ae60; }
.toast-info { background: var(--primary-color); }

.toast button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.toast button:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .reservation-section {
        padding: 2rem 0 3rem;
    }

    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .tarif-card {
        position: static;
        border-radius: 16px;
    }

    .tarif-card-body {
        padding: 16px;
    }

    .cal-cell { min-height: 44px; }

    .booking-card {
        border-radius: 16px;
    }

    .btn-primary-gold {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

/* Print styles */
@media print {

    .header,
    .footer,
    .cta-button {
        display: none !important;
    }

    main {
        margin-top: 0;
    }
}