/* ============================================================
   RÉSERVER PAGE — Styles spécifiques
   ============================================================ */

/* Header override */
.header--scrolled-init .nav-container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.header--scrolled-init .logo {
    color: var(--text-dark);
}

.header--scrolled-init .nav-links a {
    color: var(--text-dark);
}

.header--scrolled-init .menu-toggle span {
    background: var(--text-dark);
}

/* Active state for Réservez CTA button */
.nav-cta--active {
    background: var(--golden-yellow) !important;
    border-color: var(--golden-yellow) !important;
    color: var(--text-dark) !important;
}

/* ============================================================
   HERO — Réservez votre terrain
   ============================================================ */
.reserver-hero {
    padding: 160px 0 72px;
    background: linear-gradient(160deg, #0062E6 0%, #004BB5 50%, #003080 100%);
    text-align: center;
    position: relative;
}

.reserver-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 213, 0, 0.06) 0%, transparent 40%);
}

.reserver-hero-content {
    position: relative;
    color: var(--white);
    max-width: 620px;
    margin: 0 auto;
}

.reserver-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.reserver-hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ============================================================
   BOOKING LIST
   ============================================================ */
.booking-section {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.booking-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.booking-list-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.booking-list-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.booking-list-item--featured {
    border: 2px solid var(--golden-yellow);
    background: linear-gradient(145deg, #ffffff 0%, #fffcf0 100%);
}

.booking-list-content {
    flex: 1;
}

.booking-list-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.booking-list-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Features list */
.booking-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-features li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.booking-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--royal-blue);
    font-weight: 900;
}

.booking-list-item--featured .booking-features li::before {
    color: var(--golden-yellow);
}

.booking-list-action {
    flex-shrink: 0;
    width: 200px;
}

/* Buttons */
.btn-booking-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius);
    background: var(--golden-yellow);
    color: var(--text-dark);
    border: 2px solid var(--golden-yellow);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    width: 100%;
}

.btn-booking-primary:hover {
    background: #e6c000;
    border-color: #e6c000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 0, 0.35);
}

.btn-booking-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    width: auto;
}

.btn-booking-outline:hover {
    border-color: var(--royal-blue);
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 98, 230, 0.2);
}

/* Info Section below the list */
.booking-info {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
    background: #eef1f5;
    padding: 48px;
    border-radius: var(--radius);
}

.booking-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 16px;
}

.booking-info p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .booking-list {
        max-width: 600px;
    }

    .booking-list-item {
        flex-direction: column;
        align-items: stretch;
        padding: 32px 24px;
        gap: 24px;
        text-align: center;
    }

    .booking-features li {
        text-align: left;
    }

    .booking-list-action {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .reserver-hero {
        padding: 120px 0 48px;
    }

    .reserver-hero-content h1 {
        font-size: 1.8rem;
    }

    .booking-section {
        padding: 48px 0 60px;
    }

    .booking-info {
        padding: 32px 20px;
        margin-top: 48px;
    }
}