/* =========================================================
   NAVETTE AÉROPORT — styles propres à la page transfert.
   Le gros du design vient de style.css ; on n'ajoute ici que
   ce qui n'existe nulle part ailleurs sur le site.
   ========================================================= */

/* Hero de page intérieure : même traitement que l'accueil, en plus court. */
.hero--page { min-height: 68vh; padding: 160px 0 90px; }
.hero--page .hero-title { font-size: clamp(2.3rem, 5vw, 4rem); }

/* Bouton secondaire du hero : style.css masque .btn-outline et .btn-ghost
   dans .hero-cta, on en définit donc un qui lui est propre. */
.btn-line {
    border: 1px solid rgba(255,255,255,.55);
    color: var(--white);
}
.btn-line:hover {
    background: rgba(255,255,255,.14);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Fil d'Ariane */
.breadcrumb {
    background: var(--white);
    padding: 22px 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; color: var(--line); }
.breadcrumb a { color: var(--muted); transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--rose-dark); }
.breadcrumb [aria-current] { color: var(--navy); font-weight: 500; }

/* ---------- Tableau des trajets ---------- */
.trajets { padding: 100px 0; background: var(--sand); }
.trajets-scroll { overflow-x: auto; margin-top: 44px; }
.trajets-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18,52,73,.06);
}
.trajets-table caption {
    caption-side: bottom;
    padding: 16px 4px 0;
    font-size: 0.82rem;
    color: var(--muted);
    text-align: left;
}
.trajets-table th,
.trajets-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 0.93rem;
}
.trajets-table thead th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: none;
}
.trajets-table tbody tr:last-child th,
.trajets-table tbody tr:last-child td { border-bottom: none; }
.trajets-table tbody tr:hover { background: var(--sand); }
.trajets-table tbody th {
    font-weight: 600;
    color: var(--navy);
}
.trajets-table .tarif { color: var(--rose-dark); font-weight: 600; white-space: nowrap; }

/* ---------- Points de prise en charge ---------- */
.depart { padding: 100px 0; background: var(--white); }
.depart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 46px;
}
.depart-card {
    background: var(--sand);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.depart-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(18,52,73,.09); }
.depart-card h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.depart-card p { font-size: 0.92rem; color: var(--muted); }
.depart-card .depart-meta {
    display: block;
    margin-top: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rose-dark);
    font-weight: 600;
}

/* ---------- Encart propriétaires ---------- */
.navette-owner { padding: 90px 0; background: var(--sand-dark); }
.navette-owner-box {
    display: grid;
    grid-template-columns: 1.4fr auto;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 46px;
    box-shadow: 0 14px 34px rgba(18,52,73,.07);
}
.navette-owner-box h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}
.navette-owner-box p { color: var(--muted); font-size: 0.97rem; }

@media (max-width: 1080px) {
    .depart-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .navette-owner-box { grid-template-columns: 1fr; padding: 36px 28px; }
}

@media (max-width: 680px) {
    .hero--page { min-height: auto; padding: 130px 0 70px; }
    .trajets, .depart, .navette-owner { padding: 76px 0; }
    .depart-grid { grid-template-columns: 1fr; }
}
