﻿/* ============================================
   RESERVER.CSS — Page /reserver
   Breath by Nolwenn
   ============================================ */

.rv-page { background: #F0E0D7; }

/* ── HERO ── */
.rv-hero {
    padding: 80px 24px 60px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.rv-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 6px 16px;
    border-radius: 99px; margin-bottom: 16px;
    backdrop-filter: blur(8px);
    font-family: 'Poppins', sans-serif;
}

.rv-hero-h1 {
    font-size: 36px; font-weight: 900; color: white;
    line-height: 1.15; letter-spacing: -0.5px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.rv-hero-sub {
    font-size: 15px; color: rgba(255,255,255,0.85);
    line-height: 1.6; margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ── SECTION ── */
.rv-section {
    padding: 48px 24px;
    max-width: 960px;
    margin: 0 auto;
}

.rv-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.rv-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #D45C65;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.rv-section-title {
    font-size: 28px; font-weight: 900; color: #2D2A28;
    line-height: 1.2; letter-spacing: -0.3px;
    font-family: 'Poppins', sans-serif;
}

/* ── FORMATS GRID ── */
.rv-formats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

@media (min-width: 900px) {
    .rv-formats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── FORMAT CARD ── */
.rv-format-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.rv-format-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.rv-format-card--disabled { opacity: 0.7; }
.rv-format-card--disabled:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.rv-format-card-img {
    height: 160px; position: relative;
    overflow: hidden; background: #E8DDD5;
}

.rv-format-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}

.rv-format-card:hover .rv-format-card-img img { transform: scale(1.05); }

.rv-format-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(45,42,40,0.3));
}

.rv-format-card-badge {
    position: absolute; top: 12px; left: 12px;
    color: white; font-size: 9px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 7px 14px; border-radius: 99px;
    font-family: 'Poppins', sans-serif;
    background: rgba(30, 28, 26, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
}

.rv-format-card-body {
    padding: 20px; flex: 1;
    display: flex; flex-direction: column;
}

.rv-format-card-title {
    font-size: 18px; font-weight: 900; color: #2D2A28;
    margin-bottom: 6px; letter-spacing: -0.2px;
    font-family: 'Poppins', sans-serif;
}

.rv-format-card-desc {
    font-size: 13px; color: #6B6460;
    line-height: 1.6; margin-bottom: 14px; flex: 1;
    font-family: 'Poppins', sans-serif;
}

.rv-format-card-meta {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}

.rv-format-pill {
    background: #F5EDE4; color: #6B6460;
    font-size: 11px; font-weight: 500;
    padding: 4px 10px; border-radius: 99px;
    font-family: 'Poppins', sans-serif;
}

.rv-format-cta {
    display: block; text-align: center; text-decoration: none;
    font-weight: 700; font-size: 13px; padding: 12px 20px;
    border-radius: 99px; transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.rv-format-cta--primary { background: #D45C65; color: white; }
.rv-format-cta--primary:hover { background: #C04A53; }

.rv-format-cta--outline {
    background: transparent;
    border: 2px solid #2D2A28; color: #2D2A28;
}
.rv-format-cta--outline:hover { background: #2D2A28; color: white; }

.rv-format-cta--soon {
    background: rgba(0,0,0,0.06);
    color: #8A7A73; cursor: default; font-weight: 500;
}

/* ── RÉASSURANCE ── */
.rv-reassurance { background: #F5EDE4; padding: 40px 24px; }

.rv-reassurance-inner {
    max-width: 960px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}

@media (min-width: 768px) {
    .rv-reassurance-inner { flex-direction: row; justify-content: center; gap: 32px; }
}

.rv-reassurance-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: #6B6460;
    font-family: 'Poppins', sans-serif;
}

.rv-reassurance-icon { font-size: 18px; flex-shrink: 0; }

/* ── CONTACT FALLBACK ── */
.rv-contact-block {
    text-align: center; padding: 48px 24px;
    max-width: 600px; margin: 0 auto;
}

.rv-contact-block h2 {
    font-size: 24px; font-weight: 900; color: #2D2A28;
    margin-bottom: 10px; font-family: 'Poppins', sans-serif;
}

.rv-contact-block p {
    font-size: 14px; color: #6B6460;
    line-height: 1.6; margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.rv-contact-block a {
    display: inline-block; background: #D45C65; color: white;
    font-weight: 700; font-size: 14px;
    padding: 14px 32px; border-radius: 99px;
    text-decoration: none; transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}
.rv-contact-block a:hover { background: #C04A53; }

@media (min-width: 768px) {
    .rv-hero-h1 { font-size: 48px; }
}