/* ============================================================
   RELAX NAUTIQUE — Feuille de styles principale
   Structure : variables → global → header → hero → sections
   ============================================================ */

/* ── Variables — Charte graphique Relax Nautique ── */
:root {
    /* Palette charte : marine / teal / aqua / crème / corail */
    --rn-primary:        #1E6D7A;            /* teal — couleur principale (liens, primaire) */
    --rn-primary-hover:  #17606B;
    --rn-primary-light:  rgba(30, 109, 122, 0.10);
    --rn-marine:         #0D3B66;            /* marine — titres */
    --rn-navy:           #0D3B66;            /* alias historique → marine */
    --rn-aqua:           #7EC8CF;            /* cyan clair — accents légers */
    --rn-accent:         #FF5A3C;            /* corail — call-to-action */
    --rn-accent-hover:   #E64A2E;
    --rn-bg:             #F2E7D6;            /* crème — fond */
    --rn-bg-alt:         #ffffff;
    --rn-text:           #2d3436;
    --rn-text-muted:     #636e72;
    --rn-border:         rgba(0, 0, 0, 0.08);
    --rn-shadow:         0 4px 24px rgba(0, 0, 0, 0.08);
    --rn-shadow-hover:   0 8px 32px rgba(0, 0, 0, 0.14);
    --rn-radius:         12px;
    --rn-radius-sm:      8px;
    --rn-header-height:  70px;
    --rn-transition:     0.2s ease;
}

/* Note : l'extension Bootstrap (variables --bs-*, .btn-primary, .btn-success…)
   est centralisée dans custom-bootstrap.css. */

/* ── Reset & global ── */
*, *::before, *::after { box-sizing: border-box; }

/* Ancres et en-tête collant : sans cette marge, une ancre (#activites, #reserver…)
   amène sa cible tout en haut du viewport, où l'en-tête sticky la recouvre.
   scroll-padding-top décale le point d'arrêt de la hauteur de l'en-tête. */
html {
    scroll-padding-top: calc(var(--rn-header-height) + 1rem);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--rn-bg);
    color: var(--rn-text);
    padding-bottom: 0;
}

img { display: block; }
a { text-decoration: none; }

/* ── Utilitaires de section ── */
.rn-section {
    padding: 80px 0;
}
.rn-section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rn-primary);
    margin-bottom: 10px;
}
.rn-section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--rn-navy);
    line-height: 1.2;
    margin-bottom: 12px;
}
.rn-section-subtitle {
    color: var(--rn-text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ── Boutons globaux ── */
.rn-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--rn-primary);
    color: #fff;
    border: 2px solid var(--rn-primary);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--rn-transition), transform var(--rn-transition);
}
.rn-btn-primary:hover {
    background: var(--rn-primary-hover);
    border-color: var(--rn-primary-hover);
    color: #fff;
    transform: translateY(-1px);
}
.rn-btn-outline-primary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--rn-primary);
    border: 2px solid var(--rn-primary);
    border-radius: 50px;
    padding: 11px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--rn-transition);
}
.rn-btn-outline-primary:hover {
    background: var(--rn-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* ============================================================
   HEADER
   ============================================================ */
.rn-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--rn-bg);
    border-bottom: 1px solid var(--rn-border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.rn-navbar {
    padding: 0;
}
.rn-navbar-row {
    min-height: var(--rn-header-height);
}

/* Logo */
.rn-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--rn-navy) !important;
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: none;
}
.rn-logo strong { font-weight: 800; }
.rn-logo-img {
    height: 46px;
    width: 46px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform var(--rn-transition);
}
.rn-logo:hover .rn-logo-img { transform: scale(1.06); }

/* Variante footer : fond clair derrière le logo sur fond sombre */
.rn-logo-img--footer {
    height: 52px;
    width: 52px;
    background: var(--rn-bg);
    padding: 3px;
}
.rn-logo:hover { color: var(--rn-primary) !important; }

/* Nav links */
.rn-nav-link {
    color: var(--rn-text) !important;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 12px !important;
    border-radius: var(--rn-radius-sm);
    transition: color var(--rn-transition), background var(--rn-transition);
}
.rn-nav-link:hover,
.rn-nav-link.active {
    color: var(--rn-primary) !important;
    background: var(--rn-primary-light);
}

/* Bouton Réserver dans la nav */
.rn-btn-reserve {
    display: inline-flex;
    align-items: center;
    background: var(--rn-accent);
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--rn-transition), transform var(--rn-transition);
    text-decoration: none;
}
.rn-btn-reserve:hover {
    background: var(--rn-accent-hover);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Téléphone & réseaux */
.rn-phone {
    display: inline-flex;
    align-items: center;
    color: var(--rn-navy);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--rn-transition);
}
.rn-phone:hover { color: var(--rn-primary); }

.rn-divider-v {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: var(--rn-border);
}

.rn-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--rn-text-muted);
    font-size: 1rem;
    transition: color var(--rn-transition), background var(--rn-transition);
    text-decoration: none;
}
.rn-social-icon:hover {
    color: var(--rn-primary);
    background: var(--rn-primary-light);
}

/* Panier */
.rn-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rn-primary-light);
    color: var(--rn-primary);
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--rn-transition);
}
.rn-cart-btn:hover { background: var(--rn-primary); color: #fff; }
.rn-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--rn-accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rn-mobile-menu { background: var(--rn-bg); }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.rn-hero { margin-bottom: 0; }

.rn-hero-inner {
    height: 65vh;
    min-height: 480px;
    max-height: 780px;
}
.carousel-item { height: 100%; }

.rn-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rn-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(13, 43, 69, 0.72) 0%,
        rgba(13, 43, 69, 0.22) 55%,
        transparent 100%
    );
    z-index: 1;
}

.carousel-item .container {
    position: relative;
    height: 100%;
    z-index: 2;
}

.rn-hero-caption {
    position: absolute;
    bottom: 15%;
    max-width: 580px;
}
.carousel-item .text-center .rn-hero-caption {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}
.carousel-item .text-end .rn-hero-caption {
    right: 0;
    text-align: right;
}
.carousel-item .text-start .rn-hero-caption { left: 0; }

.rn-hero-kicker {
    display: inline-block;
    background: rgba(30, 109, 122, 0.85);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.rn-hero-title {
    color: #fff;
    font-family: 'Kalam', cursive;   /* accroche manuscrite (charte) */
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.rn-hero-subtitle {
    color: rgba(255,255,255,0.88);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 28px;
    line-height: 1.55;
}

.rn-btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: var(--rn-accent);
    color: #fff;
    border: 2px solid var(--rn-accent);
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--rn-transition);
    text-decoration: none;
}
.rn-btn-hero-primary:hover {
    background: var(--rn-accent-hover);
    border-color: var(--rn-accent-hover);
    color: #fff;
    transform: translateY(-2px);
}
.rn-btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--rn-transition);
    text-decoration: none;
}
.rn-btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Indicateurs carousel */
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all var(--rn-transition);
}
.carousel-indicators .active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   SECTION ACTIVITÉS
   ============================================================ */
.rn-activities { background: var(--rn-bg-alt); }

.rn-activity-card {
    background: #fff;
    border-radius: var(--rn-radius);
    overflow: hidden;
    box-shadow: var(--rn-shadow);
    transition: transform var(--rn-transition), box-shadow var(--rn-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.rn-activity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rn-shadow-hover);
}
.rn-activity-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.rn-activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.rn-activity-card:hover .rn-activity-img { transform: scale(1.04); }
.rn-activity-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--rn-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}
.rn-activity-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.rn-activity-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 10px;
}
.rn-activity-desc {
    color: var(--rn-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}
.rn-btn-activity {
    display: inline-flex;
    align-items: center;
    color: var(--rn-primary);
    font-weight: 600;
    font-size: 0.88rem;
    transition: gap var(--rn-transition);
    text-decoration: none;
    gap: 4px;
}
.rn-btn-activity:hover { color: var(--rn-primary-hover); gap: 8px; }

/* ── Badge variante "Nouveau" ── */
.rn-activity-badge--new {
    background: var(--rn-primary);
}

/* ── Carousel activités ── */
.rn-activities-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rn-activities-carousel {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    /* Marge verticale pour ne pas couper les ombres des cartes */
    padding: 8px 2px;
    margin: -8px -2px;
}

.rn-activities-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rn-activities-track > .rn-activity-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
}

@media (max-width: 991px) {
    .rn-activities-track > .rn-activity-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 575px) {
    .rn-activities-track > .rn-activity-card {
        flex: 0 0 calc(100% - 2rem);
    }
}

/* ── Flèches du carousel ── */
.rn-carousel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--rn-primary);
    background: #fff;
    color: var(--rn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--rn-transition), color var(--rn-transition), opacity var(--rn-transition), transform var(--rn-transition);
    box-shadow: var(--rn-shadow);
}
.rn-carousel-arrow:hover:not(:disabled) {
    background: var(--rn-primary);
    color: #fff;
    transform: scale(1.08);
}
.rn-carousel-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

/* ── Galerie photos (page activité) ── */
.rn-gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rn-gallery-carousel {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.rn-gallery-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rn-gallery-thumb {
    flex: 0 0 calc((100% - 3rem) / 4);
    min-width: 0;
    border-radius: var(--rn-radius);
    overflow: hidden;
    cursor: pointer;
}

.rn-gallery-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

@media (max-width: 991px) {
    .rn-gallery-thumb {
        flex: 0 0 calc((100% - 2rem) / 3);
    }
}

@media (max-width: 575px) {
    .rn-gallery-thumb {
        flex: 0 0 calc((100% - 1rem) / 2);
    }
}

/* ============================================================
   SECTION À PROPOS
   ============================================================ */
.rn-about { background: var(--rn-bg); }

.rn-about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--rn-text);
    line-height: 1.65;
    margin-bottom: 16px;
}
.rn-about-text {
    color: var(--rn-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.rn-about-cta-line {
    font-family: 'Kalam', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin: 0.25rem 0 1rem;
}
/* ============================================================
   SECTION AVIS CLIENTS
   ============================================================ */
.rn-reviews { background: var(--rn-navy); }
.rn-reviews .rn-section-kicker { color: rgba(255,255,255,0.55); }
.rn-reviews .rn-section-title { color: #fff; }

.rn-google-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.88rem;
    margin-top: 8px;
}

.rn-review-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--rn-radius);
    padding: 28px;
    height: 100%;
}
.rn-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.rn-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rn-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.rn-review-meta { display: flex; flex-direction: column; }
.rn-review-name { color: #fff; font-size: 0.9rem; }
.rn-review-date { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.rn-review-google { color: rgba(255,255,255,0.35); font-size: 0.9rem; }
.rn-review-stars { color: var(--rn-accent); font-size: 0.85rem; margin-bottom: 14px; }
.rn-star-empty { color: rgba(255,255,255,0.2); }
.rn-review-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Contrôles carousel avis */
.rn-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--rn-transition);
}
.rn-carousel-btn:hover {
    background: var(--rn-primary);
    border-color: var(--rn-primary);
    color: #fff;
}
.rn-dots-inline {
    display: flex !important;
    align-items: center;
    gap: 6px;
    position: static !important;
}
.rn-dots-inline [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    opacity: 1;
    flex-shrink: 0;
}
.rn-dots-inline .active {
    background: var(--rn-primary);
    width: 20px;
    border-radius: 4px;
}

/* ============================================================
   BANDEAU INSTAGRAM
   ============================================================ */
.rn-instagram { background: var(--rn-bg-alt); }

.rn-instagram-header { padding: 48px 20px 8px; }
.rn-instagram-follow {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rn-navy);
    text-decoration: none;
    transition: color var(--rn-transition);
    gap: 8px;
}
.rn-instagram-follow .bi-instagram { color: #e1306c; }
.rn-instagram-follow:hover { color: #e1306c; }
.rn-instagram-sub {
    color: var(--rn-text-muted);
    font-size: 0.88rem;
    margin-top: 4px;
    margin-bottom: 0;
}
.rn-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: 24px;
}
.rn-instagram-item {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 1 / 1; /* carrés qui s'agrandissent avec la largeur de colonne */
}
.rn-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.rn-instagram-item:hover img { transform: scale(1.06); }
.rn-instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 43, 69, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--rn-transition);
}
.rn-instagram-overlay .bi-instagram {
    color: #fff;
    font-size: 1.6rem;
    opacity: 0;
    transition: opacity var(--rn-transition);
}
.rn-instagram-item:hover .rn-instagram-overlay { background: rgba(13, 43, 69, 0.45); }
.rn-instagram-item:hover .rn-instagram-overlay .bi-instagram { opacity: 1; }

@media (max-width: 991px) {
    .rn-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 575px) {
    .rn-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.rn-footer {
    background: var(--rn-navy);
    color: rgba(255,255,255,0.75);
}
.rn-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}
.rn-footer-logo strong { font-weight: 800; }
.rn-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
}
.rn-footer-logo strong { font-weight: 800; }
.rn-footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.55;
}
.rn-footer-contact {
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rn-footer-contact li {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.65);
}
.rn-footer-contact a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--rn-transition);
}
.rn-footer-contact a:hover { color: var(--rn-primary); }
.rn-footer-contact .bi { color: var(--rn-primary); font-size: 0.85rem; }

.rn-footer-socials .rn-footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--rn-transition);
}
.rn-footer-socials .rn-footer-social-icon:hover {
    background: var(--rn-primary);
    color: #fff;
}
.rn-footer-heading {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.rn-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rn-footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--rn-transition);
}
.rn-footer-links a:hover { color: var(--rn-primary); }
.rn-footer-links .bi { font-size: 0.65rem; }
.rn-footer-bottom {
    background: rgba(0,0,0,0.2);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.07);
}
.rn-footer-made { font-style: italic; }

/* ============================================================
   FORMULAIRE LOGIN (existant)
   ============================================================ */
.form-login { background-color: var(--rn-bg); }

/* ============================================================
   PAGE ACTIVITÉ
   ============================================================ */

/* ── Hero pleine largeur ── */
.rn-activity-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    height: 65vh;
    max-height: 780px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.rn-activity-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,43,69,0.55) 0%, rgba(13,43,69,0.75) 100%);
}
.rn-activity-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    max-width: 780px;
}
.rn-activity-hero__title {
    font-family: 'Kalam', cursive;   /* accroche manuscrite (charte) */
    font-size: clamp(2.6rem, 6.5vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.rn-activity-hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ── Bouton Réserver ── */
.rn-btn-reserve {
    display: inline-flex;
    align-items: center;
    background: var(--rn-accent);
    color: var(--rn-navy);
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background var(--rn-transition), transform var(--rn-transition), box-shadow var(--rn-transition);
    box-shadow: 0 4px 20px rgba(255, 90, 60, 0.35);
}
.rn-btn-reserve:hover {
    background: var(--rn-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 90, 60, 0.45);
}
.rn-btn-reserve--lg {
    padding: 18px 56px;
    font-size: 1.2rem;
}

/* ── Section alt (fond légèrement différent) ── */
.rn-section--alt {
    background: var(--rn-bg-alt);
}

/* ── Cartes info pratiques ── */
.rn-info-card {
    background: #fff;
    border: 1px solid var(--rn-border);
    border-radius: var(--rn-radius);
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--rn-shadow);
    height: 100%;
    transition: transform var(--rn-transition), box-shadow var(--rn-transition);
}
.rn-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rn-shadow-hover);
}
.rn-info-card__icon {
    width: 60px;
    height: 60px;
    background: var(--rn-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.rn-info-card__icon .bi {
    font-size: 1.6rem;
    color: var(--rn-primary);
}
.rn-info-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 0.5rem;
}
.rn-info-card__text {
    font-size: 0.92rem;
    color: var(--rn-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── CTA Réservation (section sombre) ── */
.rn-reserve-cta {
    background: var(--rn-navy);
    padding: 100px 0;
}

/* ============================================================
   PAGE RÉSERVATION — Calendrier hebdomadaire
   ============================================================ */

/* ── Hero compact ── */
.rn-resa-hero {
    position: relative;
    height: 40vh;
    min-height: 260px;
    max-height: 420px;
    background: url('https://picsum.photos/seed/resa-hero/1600/500') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.rn-resa-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,43,69,0.6), rgba(13,43,69,0.8));
}
.rn-resa-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}
.rn-resa-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.rn-resa-hero__subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* ── Navigation semaine ── */
.rn-week-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}
.rn-week-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 2px solid var(--rn-primary);
    border-radius: 50px;
    color: var(--rn-primary);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--rn-transition);
}
.rn-week-nav__btn:hover {
    background: var(--rn-primary);
    color: #fff;
}
.rn-week-nav__label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rn-navy);
    text-align: center;
}

/* ── Layout principal ── */
.rn-resa-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
    padding-bottom: 3rem;
}
@media (max-width: 1099px) {
    .rn-resa-layout {
        grid-template-columns: 1fr;
    }
}

/* ── Wrapper scroll horizontal du calendrier ── */
.rn-calendar-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    background: #fff;
}

/* ── Grille calendrier ── */
.rn-calendar {
    display: grid;
    grid-template-columns: 70px repeat(7, minmax(110px, 1fr));
    min-width: 840px;
}

/* ── En-têtes ── */
.rn-calendar__corner {
    background: var(--rn-navy);
    border-radius: var(--rn-radius) 0 0 0;
}
.rn-calendar__day-header {
    background: var(--rn-navy);
    color: #fff;
    text-align: center;
    padding: 14px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.rn-calendar__day-header:last-child {
    border-radius: 0 var(--rn-radius) 0 0;
}
.rn-calendar__day-header.is-today {
    background: var(--rn-primary);
}
.rn-day-name {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
}
.rn-day-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}
.rn-today-badge {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 2px 8px;
    font-weight: 600;
}

/* ── Colonne heure ── */
.rn-calendar__time {
    background: #f8f9fa;
    color: var(--rn-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    border-top: 1px solid var(--rn-border);
    border-right: 1px solid var(--rn-border);
}

/* ── Cellule de créneau ── */
.rn-slot-cell {
    border: 1px solid var(--rn-border);
    border-top: none;
    border-left: none;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 72px;
    cursor: pointer;
    transition: background var(--rn-transition), transform var(--rn-transition);
    text-align: center;
}

.rn-slot-cell--open {
    background: rgba(30, 109, 122, 0.06);
}
.rn-slot-cell--open:hover {
    background: rgba(30, 109, 122, 0.15);
    transform: scale(1.02);
    z-index: 1;
}
.rn-slot-cell--few {
    background: rgba(240, 165, 0, 0.08);
}
.rn-slot-cell--few:hover {
    background: rgba(240, 165, 0, 0.18);
    transform: scale(1.02);
    z-index: 1;
}
.rn-slot-cell--full,
.rn-slot-cell--past {
    background: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.5;
}
.rn-slot-cell.is-selected {
    background: var(--rn-primary) !important;
    outline: 2px solid var(--rn-primary);
    outline-offset: -2px;
    transform: scale(1.02);
    z-index: 2;
}
.rn-slot-cell.is-selected .rn-slot-spots,
.rn-slot-cell.is-selected .rn-slot-label {
    color: #fff !important;
}

.rn-slot-spots {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rn-primary);
    display: flex;
    align-items: center;
    gap: 3px;
}
.rn-slot-cell--few .rn-slot-spots {
    color: #d48000;
}
.rn-slot-label {
    font-size: 0.7rem;
    color: var(--rn-text-muted);
    font-weight: 500;
}

/* ── Légende ── */
.rn-legend {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}
.rn-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--rn-text-muted);
}
.rn-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}
.rn-legend-dot--open  { background: rgba(30, 109, 122, 0.4); }
.rn-legend-dot--few   { background: rgba(240, 165, 0, 0.6); }
.rn-legend-dot--full  { background: #dee2e6; }
.rn-legend-dot--past  { background: #ced4da; }

/* ── Panneau de sélection ── */
.rn-selection-panel {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    overflow: hidden;
    position: sticky;
    top: calc(var(--rn-header-height) + 1rem);
    transition: box-shadow var(--rn-transition);
}
.rn-selection-panel.is-open {
    box-shadow: var(--rn-shadow-hover);
}

.rn-panel-header {
    background: var(--rn-navy);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rn-panel-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.rn-panel-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--rn-transition);
}
.rn-panel-close:hover { color: #fff; }

.rn-panel-placeholder {
    padding: 40px 20px;
    text-align: center;
    color: var(--rn-text-muted);
}
.rn-panel-placeholder__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--rn-primary);
    opacity: 0.4;
}
.rn-panel-placeholder p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.rn-panel-form {
    padding: 0 0 1rem;
}

.rn-panel-section {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--rn-border);
}
.rn-panel-section-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rn-text-muted);
    margin-bottom: 0.75rem;
}

.rn-panel-slot-display {
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    color: var(--rn-navy);
}

/* ── Choix activités ── */
.rn-activity-choices {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rn-activity-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 2px solid var(--rn-border);
    border-radius: var(--rn-radius-sm);
    background: #fff;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--rn-text);
    transition: all var(--rn-transition);
    text-align: left;
    width: 100%;
}
.rn-activity-choice:hover {
    border-color: var(--rn-primary);
    background: var(--rn-primary-light);
}
.rn-activity-choice.is-selected {
    border-color: var(--rn-primary);
    background: var(--rn-primary-light);
    color: var(--rn-primary);
    font-weight: 700;
}
.rn-activity-choice .bi {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── Durée ── */
.rn-duration-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.rn-duration-btn {
    padding: 7px 14px;
    border: 2px solid var(--rn-border);
    border-radius: 50px;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rn-text);
    cursor: pointer;
    transition: all var(--rn-transition);
}
.rn-duration-btn:hover {
    border-color: var(--rn-primary);
    color: var(--rn-primary);
}
.rn-duration-btn.is-selected {
    background: var(--rn-primary);
    border-color: var(--rn-primary);
    color: #fff;
}
.rn-duration-hint {
    font-size: 0.75rem;
    color: var(--rn-text-muted);
    margin: 8px 0 0;
}

/* ── Compteur participants ── */
.rn-participants-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--rn-border);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
}
.rn-counter-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--rn-primary);
    transition: background var(--rn-transition);
}
.rn-counter-btn:hover {
    background: var(--rn-primary-light);
}
.rn-counter-value {
    min-width: 32px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--rn-navy);
}

/* ── Prix ── */
.rn-panel-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--rn-border);
    background: #f8f9fa;
}
.rn-panel-price__label {
    font-size: 0.88rem;
    color: var(--rn-text-muted);
    font-weight: 600;
}
.rn-panel-price__value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--rn-navy);
}

/* ── Bouton continuer (panel) ── */
.rn-btn-reserve--full {
    display: flex;
    justify-content: center;
    margin: 1rem 1.25rem 0;
    padding: 14px;
}
.rn-btn-reserve[disabled],
a.rn-btn-reserve[disabled] {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

.rn-panel-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--rn-text-muted);
    margin: 10px 1.25rem 0;
}

/* ============================================================
   TUNNEL DE RÉSERVATION
   ============================================================ */

/* ── Barre de progression ── */
.rn-tunnel-progress {
    background: var(--rn-navy);
    padding: 1.5rem 0;
}
.rn-tunnel-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.rn-tunnel-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.rn-tunnel-step__bubble {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.rn-tunnel-step.is-active .rn-tunnel-step__bubble {
    background: var(--rn-accent);
    color: var(--rn-navy);
    border-color: var(--rn-accent);
}
.rn-tunnel-step.is-done .rn-tunnel-step__bubble {
    background: var(--rn-primary);
    color: #fff;
    border-color: var(--rn-primary);
}
.rn-tunnel-step__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}
.rn-tunnel-step.is-active .rn-tunnel-step__label {
    color: #fff;
}
.rn-tunnel-step.is-done .rn-tunnel-step__label {
    color: rgba(255,255,255,0.7);
}
.rn-tunnel-step__line {
    width: 80px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 22px;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .rn-tunnel-step__line { width: 40px; }
    .rn-tunnel-step__label { display: none; }
}

/* ── Corps du tunnel ── */
.rn-tunnel-body {
    padding: 3rem 1rem;
    min-height: 60vh;
}
.rn-tunnel-pane {
    display: none;
}
.rn-tunnel-pane.is-active {
    display: block;
}
.rn-tunnel-pane-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 1.75rem;
}

/* ── Récap card ── */
.rn-recap-card {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    overflow: hidden;
    margin-bottom: 1rem;
}
.rn-recap-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--rn-border);
    gap: 1rem;
}
.rn-recap-row:last-child { border-bottom: none; }
.rn-recap-row--total {
    background: var(--rn-navy);
}
.rn-recap-row--total .rn-recap-label { color: rgba(255,255,255,0.75); }
.rn-recap-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--rn-text-muted);
    font-weight: 500;
    flex-shrink: 0;
}
.rn-recap-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rn-navy);
    text-align: right;
}
.rn-recap-value--price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--rn-accent);
}

.rn-recap-notice {
    background: rgba(30, 109, 122,0.08);
    border-left: 3px solid var(--rn-primary);
    border-radius: 0 var(--rn-radius-sm) var(--rn-radius-sm) 0;
    padding: 12px 16px;
    font-size: 0.88rem;
    color: var(--rn-primary);
    margin-bottom: 1.75rem;
}

/* ── Navigation étapes ── */
.rn-tunnel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Formulaire tunnel ── */
.rn-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rn-form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rn-navy);
}
.rn-input {
    padding: 11px 14px;
    border: 2px solid var(--rn-border);
    border-radius: var(--rn-radius-sm);
    font-size: 0.95rem;
    color: var(--rn-text);
    background: #fff;
    transition: border-color var(--rn-transition), box-shadow var(--rn-transition);
    width: 100%;
    font-family: inherit;
}
.rn-input:focus {
    outline: none;
    border-color: var(--rn-primary);
    box-shadow: 0 0 0 3px var(--rn-primary-light);
}
.rn-textarea {
    resize: vertical;
    min-height: 90px;
}
.rn-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}
.rn-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--rn-primary);
    cursor: pointer;
    flex-shrink: 0;
}

/* ── CGU ── */
.rn-cgu-box {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.rn-cgu-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 1rem;
}
.rn-cgu-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 8px;
    font-size: 0.88rem;
    color: var(--rn-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    border-top: 1px solid var(--rn-border);
    border-bottom: 1px solid var(--rn-border);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.rn-cgu-scroll p { margin-bottom: 0.6rem; }
.rn-cgu-accept {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}
.rn-cgu-accept input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--rn-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Récap paiement ── */
.rn-payment-recap {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    overflow: hidden;
    margin-bottom: 1rem;
}
.rn-payment-recap__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--rn-border);
    font-size: 0.95rem;
}
.rn-payment-recap__row:last-child { border-bottom: none; }
.rn-payment-recap__row--info {
    background: #f8f9fa;
}

/* ── Bouton payer ── */
.rn-btn-reserve--pay {
    padding: 16px 40px;
    font-size: 1.05rem;
}
.rn-btn-reserve--pay[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}
.rn-tunnel-secure-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--rn-text-muted);
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */

/* ── Hero ── */
.rn-contact-hero {
    position: relative;
    height: 40vh;
    min-height: 260px;
    max-height: 420px;
    background: url('https://picsum.photos/seed/contact-hero/1600/500') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.rn-contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,43,69,0.55), rgba(13,43,69,0.78));
}
.rn-contact-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}
.rn-contact-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.rn-contact-hero__subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
}

/* ── Liste d'informations ── */
.rn-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.rn-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.rn-contact-info-icon {
    width: 46px;
    height: 46px;
    background: var(--rn-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rn-contact-info-icon .bi {
    font-size: 1.15rem;
    color: var(--rn-primary);
}
.rn-contact-info-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rn-text-muted);
    margin-bottom: 3px;
}
.rn-contact-info-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--rn-navy);
    line-height: 1.5;
}
.rn-contact-info-item a {
    color: var(--rn-primary);
    font-weight: 600;
}
.rn-contact-info-item a:hover { color: var(--rn-primary-hover); }

/* ── Boutons réseaux sociaux ── */
.rn-contact-socials__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rn-text-muted);
    margin-bottom: 0.75rem;
}
.rn-contact-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    background: #1877f2;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: opacity var(--rn-transition), transform var(--rn-transition);
}
.rn-contact-social-btn:hover {
    color: #fff;
    opacity: 0.88;
    transform: translateY(-1px);
}
.rn-contact-social-btn--insta {
    background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

/* ── Carte formulaire ── */
.rn-contact-form-card {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    padding: 2rem 2rem 2.5rem;
}
.rn-contact-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rn-border);
}
.rn-contact-success {
    background: rgba(30, 109, 122, 0.1);
    border-left: 4px solid var(--rn-primary);
    border-radius: 0 var(--rn-radius-sm) var(--rn-radius-sm) 0;
    padding: 12px 16px;
    color: var(--rn-primary);
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.rn-contact-error {
    background: rgba(255, 90, 60, 0.1);
    border-left: 4px solid var(--rn-accent);
    border-radius: 0 var(--rn-radius-sm) var(--rn-radius-sm) 0;
    padding: 12px 16px;
    color: var(--rn-accent);
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

/* Champ piège anti-robots du formulaire de contact : retiré du flux visuel
   sans display:none, que certains robots détectent. */
.rn-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Select style ── */
.rn-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23636e72' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Erreurs formulaire */
.rn-contact-form .form-error,
.rn-contact-form ul.form-errors,
.rn-contact-form ul.form-errors li {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 4px;
    list-style: none;
    padding: 0;
}
/* Bordure rouge uniquement en cas d'erreur serveur (classe is-invalid),
   et non via la pseudo-classe :invalid qui colore les champs requis vides au chargement. */
.rn-input.is-invalid {
    border-color: #dc3545;
}

/* ── Section maps ── */
.rn-maps-section { background: var(--rn-bg-alt); }

.rn-map-card {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    overflow: hidden;
}
.rn-map-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--rn-border);
}
.rn-map-card__icon {
    width: 46px;
    height: 46px;
    background: var(--rn-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rn-map-card__icon .bi {
    font-size: 1.2rem;
    color: var(--rn-primary);
}
.rn-map-card__icon--parking { background: rgba(13, 43, 69, 0.08); }
.rn-map-card__icon--parking .bi { color: var(--rn-navy); }
.rn-map-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin: 0 0 2px;
}
.rn-map-card__address {
    font-size: 0.82rem;
    color: var(--rn-text-muted);
    margin: 0;
}
.rn-map-frame {
    line-height: 0;
}
.rn-map-frame iframe { display: block; }
.rn-map-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rn-primary);
    border-top: 1px solid var(--rn-border);
    transition: background var(--rn-transition);
}
.rn-map-card__link:hover {
    background: var(--rn-primary-light);
    color: var(--rn-primary);
}

/* ── Note d'accès ── */
.rn-access-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 90, 60, 0.1);
    border-left: 4px solid var(--rn-accent);
    border-radius: 0 var(--rn-radius-sm) var(--rn-radius-sm) 0;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--rn-text);
}
.rn-access-note .bi { color: var(--rn-accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   PAGE MENTIONS LÉGALES
   ============================================================ */

.rn-legal-header {
    background: var(--rn-navy);
    padding: 2.5rem 0 2rem;
}
.rn-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}
.rn-breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color var(--rn-transition);
}
.rn-breadcrumb a:hover { color: #fff; }
.rn-breadcrumb .bi { font-size: 0.7rem; }
.rn-breadcrumb span { color: rgba(255,255,255,0.85); }

.rn-legal-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.4rem;
}
.rn-legal-updated {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ── Corps du document ── */
.rn-legal-body {
    padding: 3rem 1rem 4rem;
}
.rn-legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--rn-border);
}
.rn-legal-section:last-of-type {
    border-bottom: none;
}
.rn-legal-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 1.25rem;
}
.rn-legal-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--rn-primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    flex-shrink: 0;
}
.rn-legal-content {
    font-size: 0.95rem;
    color: var(--rn-text);
    line-height: 1.8;
}
.rn-legal-content p { margin-bottom: 1rem; }
.rn-legal-content p:last-child { margin-bottom: 0; }
.rn-legal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}
.rn-legal-content ul li { margin-bottom: 0.4rem; }
.rn-legal-content a {
    color: var(--rn-primary);
    font-weight: 500;
}
.rn-legal-content a:hover { color: var(--rn-primary-hover); }

.rn-legal-subheading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin: 1.5rem 0 0.5rem;
}

/* ── Tableau ── */
.rn-legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    border-radius: var(--rn-radius-sm);
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.rn-legal-table th,
.rn-legal-table td {
    padding: 10px 14px;
    border: 1px solid var(--rn-border);
    vertical-align: top;
    text-align: left;
}
.rn-legal-table thead th {
    background: var(--rn-navy);
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    border-color: rgba(255,255,255,0.1);
}
.rn-legal-table tbody th {
    background: #f8f9fa;
    color: var(--rn-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: 38%;
    white-space: nowrap;
}
.rn-legal-table tbody tr:nth-child(even) td { background: #fafafa; }

/* ── Citation d'article de loi ── */
.rn-legal-quote {
    margin: 0.75rem 0 1.25rem;
    padding: 0.85rem 1.1rem;
    background: rgba(30, 109, 122, 0.06);
    border-left: 3px solid var(--rn-primary);
    border-radius: var(--rn-radius-sm);
    color: var(--rn-navy);
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.7;
}
.rn-legal-quote cite {
    display: block;
    margin-bottom: 0.35rem;
    font-style: normal;
    font-weight: 700;
    color: var(--rn-primary);
}

/* ── Visuels récapitulatifs ── */
.rn-legal-figures {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.rn-legal-figure {
    margin: 0;
}
.rn-legal-figure img {
    width: 100%;
    border-radius: var(--rn-radius);
    box-shadow: 0 4px 20px rgba(13, 59, 102, 0.10);
}

/* ── Boutons bas de page ── */
.rn-legal-back {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
}

/* ============================================================
   PAGE TARIFS
   ============================================================ */

/* ── Hero / accroche ── */
.rn-pricing-hero {
    padding: 64px 0 24px;
    text-align: center;
}
.rn-pricing-hero__kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rn-primary);
    margin-bottom: 0.5rem;
}
.rn-pricing-hero__title {
    font-family: 'Kalam', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 0.75rem;
}
.rn-pricing-hero__lead {
    max-width: 620px;
    margin: 0 auto;
    color: var(--rn-text-muted);
    font-size: 1.05rem;
}
.rn-pricing-hero__icons {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 0;
    margin: 1.75rem 0 0;
}
.rn-pricing-hero__icons li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: var(--rn-primary);
}
.rn-pricing-hero__icons i { font-size: 1.7rem; }
.rn-pricing-hero__icons span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--rn-text-muted);
}

/* ── Tableaux ── */
.rn-pricing-section { padding-top: 24px; }
.rn-pricing-block { margin-bottom: 3.5rem; }
.rn-pricing-block:last-of-type { margin-bottom: 1.5rem; }
.rn-pricing-block__title {
    color: var(--rn-navy);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.rn-pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.rn-pricing-table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 6px;
}
.rn-pricing-table th,
.rn-pricing-table td {
    text-align: center;
    vertical-align: middle;
    padding: 14px 10px;
    border-radius: var(--rn-radius-sm);
}
.rn-pricing-table thead th {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    line-height: 1.25;
}
.rn-pricing-corner { background: transparent; }
.rn-pricing-dur {
    background: var(--rn-navy);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    white-space: nowrap;
}
.rn-pricing-table tbody td {
    background: #fff;
    box-shadow: 0 1px 6px rgba(13, 59, 102, 0.06);
}
.rn-pricing-price {
    font-weight: 700;
    color: var(--rn-navy);
    font-size: 1.05rem;
}
.rn-pricing-na { color: var(--rn-text-muted); font-weight: 600; }
.rn-pricing-note {
    color: var(--rn-text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ── Bandeau « valeurs » ── */
.rn-pricing-features {
    background: #fff;
    padding: 56px 0;
    border-top: 1px solid var(--rn-border);
}
.rn-pricing-feature__icon {
    font-size: 2.2rem;
    color: var(--rn-accent);
    display: block;
    margin-bottom: 0.75rem;
}
.rn-pricing-feature__title {
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--rn-navy);
    margin-bottom: 0.35rem;
}
.rn-pricing-feature__text {
    font-size: 0.88rem;
    color: var(--rn-text-muted);
    margin: 0;
}

/* ── CTA ── */
.rn-cta {
    background: var(--rn-navy);
    padding: 56px 0;
}
.rn-cta__title {
    font-family: 'Kalam', cursive;
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 1.5rem;
}
.rn-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.rn-cta__outline {
    color: #fff;
    border-color: #fff;
}
.rn-cta__outline:hover {
    background: #fff;
    color: var(--rn-navy);
    border-color: #fff;
}

/* ============================================================
   PAGE MON COMPTE
   ============================================================ */

/* ── Bandeau utilisateur ── */
.rn-account-header {
    background: var(--rn-navy);
    padding: 2rem 0;
}
.rn-account-hero {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.rn-account-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--rn-primary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.15);
}
.rn-account-hello {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.rn-account-email {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* ── Barre d'onglets ── */
.rn-account-tabs-wrap {
    background: #fff;
    border-bottom: 1px solid var(--rn-border);
    position: sticky;
    top: var(--rn-header-height);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.rn-account-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.rn-account-nav::-webkit-scrollbar { display: none; }

.rn-account-nav-btn {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 1rem 1.25rem;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    color: var(--rn-text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--rn-transition), border-color var(--rn-transition);
    margin-bottom: -1px;
}
.rn-account-nav-btn:hover { color: var(--rn-primary); }
.rn-account-nav-btn.active {
    color: var(--rn-primary);
    border-bottom-color: var(--rn-primary);
}
.rn-account-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--rn-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 6px;
}

/* ── Corps du compte ── */
.rn-account-body {
    padding: 2.5rem 1rem 4rem;
}
.rn-account-section {
    margin-bottom: 3rem;
}
.rn-account-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}
.rn-account-section-title--muted { color: var(--rn-text-muted); }

/* ── Notice ── */
.rn-account-notice {
    display: flex;
    align-items: center;
    background: rgba(30, 109, 122, 0.07);
    border-left: 3px solid var(--rn-primary);
    border-radius: 0 var(--rn-radius-sm) var(--rn-radius-sm) 0;
    padding: 10px 14px;
    font-size: 0.86rem;
    color: var(--rn-primary);
    margin-bottom: 1.25rem;
}

/* ── État vide ── */
.rn-account-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--rn-text-muted);
}
.rn-account-empty .bi {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.35;
}
.rn-account-empty p { margin-bottom: 1.25rem; }

/* ── Cartes réservation ── */
.rn-resa-card {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--rn-transition);
}
.rn-resa-card:hover { box-shadow: var(--rn-shadow-hover); }

.rn-resa-card--past {
    background: #f8f9fa;
    box-shadow: none;
    border: 1px solid var(--rn-border);
}
.rn-resa-card--past:hover { box-shadow: var(--rn-shadow); }

.rn-resa-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--rn-border);
}
.rn-resa-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--rn-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rn-resa-card__icon .bi {
    font-size: 1.1rem;
    color: var(--rn-primary);
}
.rn-resa-card__icon--past { background: #e9ecef; }
.rn-resa-card__icon--past .bi { color: var(--rn-text-muted); }

.rn-resa-card__activity {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rn-resa-card--past .rn-resa-card__activity { color: var(--rn-text-muted); }

.rn-resa-card__id {
    font-size: 0.72rem;
    color: var(--rn-text-muted);
    font-family: monospace;
}

/* ── Badges statut ── */
.rn-resa-status {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.rn-resa-status--confirmed { background: rgba(30, 109, 122,0.12); color: var(--rn-primary); }
.rn-resa-status--pending   { background: rgba(240,165,0,0.15);  color: #b37800; }
.rn-resa-status--completed { background: #e9ecef; color: var(--rn-text-muted); }

.rn-resa-card__body {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.rn-resa-card__detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: var(--rn-text);
}
.rn-resa-card--past .rn-resa-card__detail { color: var(--rn-text-muted); }
.rn-resa-card__detail .bi {
    color: var(--rn-text-muted);
    font-size: 0.88rem;
    flex-shrink: 0;
}

.rn-resa-card__footer {
    display: flex;
    border-top: 1px solid var(--rn-border);
}
.rn-resa-card__action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rn-primary);
    border: none;
    background: none;
    cursor: pointer;
    transition: background var(--rn-transition);
    border-right: 1px solid var(--rn-border);
}
.rn-resa-card__action:last-child { border-right: none; }
.rn-resa-card__action:hover { background: var(--rn-primary-light); color: var(--rn-primary); }
.rn-resa-card__action--danger { color: #dc3545; }
.rn-resa-card__action--danger:hover { background: rgba(220,53,69,0.08); color: #dc3545; }

/* ── Cartes formulaire (accès / infos) ── */
.rn-account-form-card {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    padding: 1.75rem;
}
.rn-account-form-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--rn-border);
    display: flex;
    align-items: center;
}
.rn-acces-current {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border-radius: var(--rn-radius-sm);
    padding: 10px 14px;
}
.rn-acces-current__label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rn-text-muted);
    flex-shrink: 0;
}
.rn-acces-current__value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rn-navy);
}

/* ── Liste paiements ── */
.rn-payment-list {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    overflow: hidden;
}
.rn-payment-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--rn-border);
    transition: background var(--rn-transition);
}
.rn-payment-row:last-child { border-bottom: none; }
.rn-payment-row:hover { background: #f8f9fa; }

.rn-payment-row__icon {
    width: 38px;
    height: 38px;
    background: var(--rn-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rn-payment-row__icon .bi { color: var(--rn-primary); }

.rn-payment-row__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.rn-payment-row__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rn-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rn-payment-row__meta {
    font-size: 0.75rem;
    color: var(--rn-text-muted);
}
.rn-payment-row__ref { font-family: monospace; }

.rn-payment-row__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}
.rn-payment-row__amount {
    font-size: 1rem;
    font-weight: 800;
    color: var(--rn-navy);
}

.rn-payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    background: var(--rn-navy);
    border-radius: var(--rn-radius);
    color: #fff;
    font-size: 0.95rem;
}
.rn-payment-total strong { font-size: 1.2rem; font-weight: 800; }

/* ============================================================
   ADMIN BACK OFFICE
   ============================================================ */

/* ── Layout ── */
body.rn-admin {
    background: #f0f2f5;
    padding-top: 0;
}

.rn-admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ── Sidebar ── */
.rn-admin-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--rn-navy);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 200;
    transition: transform 0.25s ease;
}

.rn-admin-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.rn-admin-nav {
    padding: 12px 0;
    flex: 1;
}

.rn-admin-nav-section {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 14px 16px 5px;
    margin: 0;
}

.rn-admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: all 0.15s;
    border-left: 3px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.rn-admin-nav-link i { width: 16px; text-align: center; font-size: 0.9rem; }
.rn-admin-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
}
.rn-admin-nav-link.active {
    color: #fff;
    background: rgba(30, 109, 122,0.25);
    border-left-color: var(--rn-primary);
}
.rn-admin-nav-link--sub {
    padding-left: 36px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.rn-admin-nav-link--sub.active { color: #fff; }

.rn-admin-sidebar-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 16px;
    flex-shrink: 0;
}
.rn-admin-sidebar-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    overflow: hidden;
}

/* ── Content area ── */
.rn-admin-content {
    margin-left: 240px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Topbar ── */
.rn-admin-topbar {
    height: 60px;
    background: #fff;
    border-bottom: 1px solid var(--rn-border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 12px;
}

.rn-admin-page-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--rn-navy);
    margin: 0;
}

.rn-admin-user-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--rn-text-muted);
}

.rn-admin-sidebar-toggle {
    background: none;
    border: none;
    color: var(--rn-text-muted);
    cursor: pointer;
    padding: 4px 8px;
}

/* ── Main area ── */
.rn-admin-main {
    padding: 24px;
    flex: 1;
}

/* ── Flash messages ── */
.rn-flash {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 24px 0;
    padding: 14px 18px;
    padding-right: 48px;
    border-radius: 10px;
    border: none;
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rn-flash .btn-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    opacity: 0.75;
}

.rn-flash .btn-close:hover {
    opacity: 1;
}

.rn-flash__icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.rn-flash__message {
    flex: 1;
}

.rn-flash--success {
    background: #1a7f4b;
    color: #fff;
}

.rn-flash--danger {
    background: #c0392b;
    color: #fff;
}

.rn-flash--warning {
    background: #e67e22;
    color: #fff;
}

.rn-flash--info {
    background: #2471a3;
    color: #fff;
}

/* ── Footer ── */
.rn-admin-footer {
    padding: 12px 24px;
    border-top: 1px solid var(--rn-border);
    background: #fff;
    font-size: 0.78rem;
    color: var(--rn-text-muted);
}

/* ── KPI Cards ── */
.rn-kpi-card {
    background: #fff;
    border-radius: var(--rn-radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.rn-kpi-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.rn-kpi-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rn-navy);
    line-height: 1;
}
.rn-kpi-label {
    font-size: 0.76rem;
    color: var(--rn-text-muted);
    margin-top: 3px;
}

/* ── Panel (table card) ── */
.rn-admin-panel {
    background: #fff;
    border-radius: var(--rn-radius);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    overflow: hidden;
}
.rn-admin-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--rn-border);
}
.rn-admin-panel-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rn-navy);
    margin: 0 0 2px;
}
.rn-admin-panel-subtitle {
    font-size: 0.78rem;
    color: var(--rn-text-muted);
}

/* ── Search bar ── */
.rn-admin-search-bar {
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid var(--rn-border);
}
.rn-admin-search-bar label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--rn-text-muted);
    margin-bottom: 4px;
}

/* ── Table ── */
.rn-admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.rn-admin-table thead th {
    padding: 10px 16px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rn-text-muted);
    background: #f8f9fa;
    border-bottom: 1px solid var(--rn-border);
    white-space: nowrap;
}
.rn-admin-table tbody tr {
    border-bottom: 1px solid var(--rn-border);
    transition: background 0.1s;
}
.rn-admin-table tbody tr:last-child { border-bottom: none; }
.rn-admin-table tbody tr:hover { background: #f8faff; }
.rn-admin-table td {
    padding: 12px 16px;
    vertical-align: middle;
}
.rn-admin-table-time {
    font-weight: 600;
    color: var(--rn-navy);
    white-space: nowrap;
}

/* ── Client cell ── */
.rn-admin-client {
    display: flex;
    flex-direction: column;
}
.rn-admin-client-name { font-weight: 500; }
.rn-admin-client-email { font-size: 0.76rem; }

/* ── Activity badge ── */
.rn-admin-activity-badge {
    display: inline-block;
    background: var(--rn-primary-light);
    color: var(--rn-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Tiny buttons ── */
.btn-xs {
    padding: 3px 7px;
    font-size: 0.75rem;
    line-height: 1.4;
    border-radius: 6px;
}

/* ── Empty state ── */
.rn-admin-empty {
    padding: 60px 20px;
    text-align: center;
    color: var(--rn-text-muted);
}
.rn-admin-empty i { font-size: 2.5rem; opacity: 0.3; display: block; margin-bottom: 12px; }

/* ── Stub page ── */
.rn-admin-stub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    color: var(--rn-text-muted);
}
.rn-admin-stub-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--rn-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--rn-primary);
    margin-bottom: 20px;
}

/* ── Settings fields ── */
.rn-settings-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: var(--rn-radius);
    border: 1px solid var(--rn-border);
}
.rn-settings-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.rn-settings-value {
    font-size: 0.9rem;
    color: var(--rn-navy);
    font-weight: 500;
}

/* ── Responsive sidebar ── */
@media (max-width: 991px) {
    .rn-admin-sidebar { transform: translateX(-100%); }
    .rn-admin-sidebar--open { transform: translateX(0); }
    .rn-admin-content { margin-left: 0; }
}

/* ════════════════════════════════════════
   Admin — Vue Semaine
════════════════════════════════════════ */
.rn-week-cal-wrap {
    overflow-x: auto;
    padding: 0;
}

.rn-week-cal {
    display: grid;
    /* col 1 = time label, cols 2–8 = days */
    grid-template-columns: 64px repeat(var(--day-count, 7), 1fr);
    min-width: 700px;
}

.rn-week-cal__corner {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    position: sticky;
    left: 0;
    z-index: 2;
}

.rn-week-cal__day-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 4px;
    border-bottom: 2px solid #e9ecef;
    border-right: 1px solid #f0f0f0;
    background: #f8f9fa;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: background 0.15s;
}
.rn-week-cal__day-header:hover { background: #e8f0fe; color: #0d6efd; }
.rn-week-cal__day-header.is-today { background: #e8f0fe; border-bottom-color: #0d6efd; }

.rn-week-day-name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
}
.rn-week-cal__day-header.is-today .rn-week-day-name { color: #0d6efd; }

.rn-week-day-num {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}
.rn-week-cal__day-header.is-today .rn-week-day-num { color: #0d6efd; }

.rn-week-day-count {
    font-size: 0.7rem;
    background: #0d6efd;
    color: #fff;
    border-radius: 999px;
    padding: 1px 7px;
    font-weight: 600;
}

.rn-today-dot {
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    background: #0d6efd;
    border-radius: 50%;
}

.rn-week-cal__time {
    font-size: 0.72rem;
    color: #6c757d;
    font-weight: 500;
    padding: 0 8px;
    display: flex;
    align-items: flex-start;
    padding-top: 6px;
    border-top: 1px solid #f0f0f0;
    border-right: 1px solid #e9ecef;
    height: 72px;
    background: #fafafa;
    position: sticky;
    left: 0;
    z-index: 1;
}

.rn-week-cal__cell {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 4px 6px;
    border-top: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    height: 72px;
    overflow: hidden;
    text-decoration: none;
    transition: background 0.12s;
}
.rn-week-cal__cell:hover { background: #f0f6ff; }
.rn-week-cal__cell.is-today-col { background: #f5f8ff; }
.rn-week-cal__cell.has-bookings { cursor: pointer; }

.rn-week-booking-pill {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}
.rn-week-pill-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ════════════════════════════════════════
   Admin — Vue Jour
════════════════════════════════════════ */
.rn-day-cal-wrap {
    overflow-x: auto;
}

.rn-day-cal {
    display: grid;
    /* col 1 = time labels, cols 2..N = booking sub-columns */
    grid-template-columns: 72px repeat(var(--max-cols, 1), 1fr);
    grid-template-rows: repeat(var(--hour-count, 9), 90px);
    position: relative;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.rn-day-cal__time {
    grid-column: 1;
    font-size: 0.72rem;
    color: #6c757d;
    font-weight: 500;
    padding: 8px 10px 0;
    border-bottom: 1px solid #f0f0f0;
    border-right: 2px solid #e9ecef;
    background: #fafafa;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.rn-day-cal__line {
    grid-column: 2 / -1;
    border-bottom: 1px solid #f0f0f0;
    pointer-events: none;
}

.rn-day-booking-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 14px;
    margin: 4px 6px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: filter 0.12s, box-shadow 0.12s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.rn-day-booking-card:hover {
    filter: brightness(0.96);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: inherit;
}

.rn-day-card-header {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 600;
}
.rn-day-card-time,
.rn-day-card-people,
.rn-day-card-client {
    font-size: 0.75rem;
    color: #495057;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

@media (max-width: 600px) {
    .rn-week-cal { min-width: 560px; }
    .rn-day-card-client { display: none; }
}

/* ── Gallery picker selected state ── */
.gallery-card.selected { border: 2px solid var(--bs-success) !important; }

/* Stepper wizard */
.rn-stepper {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.rn-stepper__item {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
}
.rn-stepper__item + .rn-stepper__item::before {
    content: '';
    flex: 1 1 auto;
    min-width: 1.5rem;
    border-top: 1px solid #dee2e6;
    margin: 0 .75rem;
}
.rn-stepper__badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 600;
    flex-shrink: 0;
}
.rn-stepper__item--active  .rn-stepper__badge { background: var(--bs-primary);   color: #fff; }
.rn-stepper__item--done    .rn-stepper__badge { background: var(--bs-success);   color: #fff; }
.rn-stepper__item--pending .rn-stepper__badge { background: var(--bs-secondary); color: #fff; opacity: .6; }
.gallery-card.selected .gallery-check { display: flex !important; }
