/* ---------- BASE ---------- */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f5f5;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.8;
}

a {
    color: #B85042;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---------- CONTAINERS ---------- */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.2rem;
}

/* ---------- SECTIONS ---------- */
section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 2.5rem 0;
    }
}

/* ---------- TITRES ---------- */
h1,
h2,
h3 {
    color: #2C5F2D;
}

h1 {
    font-size: 2.4rem;
}

h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #000;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
}

/* ---------- BOUTONS ---------- */
button,
.btn {
    display: inline-block;
    background: #2C5F2D;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

button:hover,
.btn:hover {
    background: #1f4721;
}

/* Variante bouton rouge si tu veux la garder
.btn {
    background: #8b0000;
    color: #ffffff;
    padding: 0.8rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.btn:hover {
    background: #6f0000;
}
*/

@media (max-width: 768px) {
    button,
    .btn {
        width: 100%;
        padding: 0.9rem;
        font-size: 1rem;
    }
}

/* ---------- FORMULAIRES ---------- */
input,
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-bottom: 1.4rem;
}

/* ---------- FOOTER ---------- */
footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
    font-size: 0.9rem;
}

footer a {
    color: #ccc;
}

/* ---------- BADGE EXPERIENCE ---------- */
.experience-badge {
    display: inline-block;
    background: #2C5F2D;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ---------- TEXTE DE PRÉSENTATION ---------- */
.presentation-text p {
    text-align: justify;
    line-height: 1.6;
}

/* ---------- HERO HEADER ---------- */
.hero {
    background-image: url('images/lbc6.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.35);
    padding: 2rem 3rem;
    border-radius: 12px;
    text-align: center;
}

.hero-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Correction du sélecteur (un seul point) */
.hero-tagline {
    color: #ffffff;
}

.hero h1,
.hero h2,
.hero p {
    color: #ffffff;
}

/* HERO – responsive */
@media (max-width: 768px) {

    .hero {
        height: 50vh;
        padding: 1.5rem;
        text-align: center;
    }

    .hero-logo {
        max-width: 160px;
    }

    .hero-tagline {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .hero {
        height: 60vh;
    }

    .hero-logo {
        max-width: 190px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }
}

/* ---------- TITRE AVEC CROIX (si utilisé ailleurs) ---------- */
.title-with-crosses {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    text-align: center;
}

.title-with-crosses h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #000000;
    font-weight: 700;
    white-space: nowrap;
}

.cross-icon {
    width: 42px;
    height: auto;
}

/* Responsive mobile pour les croix */
@media (max-width: 600px) {
    .cross-icon {
        width: 28px;
    }
}

/* ---------- ZONE D’INTERVENTION ---------- */
.zone-intervention-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Google Maps */
.zone-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    border-radius: 12px;
}

/* Wrapper responsive Google Maps */
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Photos */
.zone-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.zone-photos figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.zone-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zone-photos figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.55);
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.4rem;
}

/* Responsive zone d’intervention */
@media (max-width: 768px) {

    .zone-intervention-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .zone-photos {
        grid-template-columns: 1fr;
    }

    .zone-map iframe {
        min-height: 240px;
    }

    .zone-photos figcaption {
        font-size: 0.85rem;
    }

    .zone-map {
        width: 100%;
    }
}

/* ---------- CARTES OFFRES / BLOCS ---------- */
.card,
.zone-intervention-grid > div {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card {
    padding: 2rem;
}
.section-reglementaire {
    background: #f7f7f5;
}

.reglementaire-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.reglementaire-grid > div {
    flex: 1;
    min-width: 280px;
}

.intro-text {
    max-width: 900px;
}

.highlight-text {
    font-size: 0.95rem;
    color: #555;
}

.source-link {
    margin-top: 1.2rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .reglementaire-grid ul {
        padding-left: 1.2rem;
    }
}
.hero-simple {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #f7f7f5;
}

.language-switch {
    text-align: center;
    margin: 1.5rem 0;
}

.language-switch button {
    margin: 0 0.5rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
}

.reservation {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #ffffff;
}
/* =========================
   RESPONSIVE GLOBAL
========================= */

/* Images fluides */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Conteneur */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* Titres */
h1, h2, h3 {
    line-height: 1.3;
}

/* Paragraphes */
p {
    line-height: 1.6;
}

/* =========================
   TABLETTE (≤ 1024px)
========================= */
@media (max-width: 1024px) {

    .hero {
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .hero-logo {
        max-width: 180px;
    }

    .zone-intervention-grid,
    .reglementaire-grid {
        gap: 2rem;
    }
}

/* =========================
   MOBILE (≤ 768px)
========================= */
@media (max-width: 768px) {

    /* Sections */
    section {
        padding: 2.5rem 0;
    }

    /* Hero */
    .hero {
        padding: 2.5rem 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    /* Grilles → colonne */
    .zone-intervention-grid,
    .reglementaire-grid {
        flex-direction: column;
    }

    /* Qui suis-je */
    .presentation-text {
        text-align: left;
    }

    /* Offres */
    section ul {
        padding-left: 1.2rem;
    }

    /* Cartes / blocs */
    section div[style*="box-shadow"] {
        padding: 1.5rem;
    }

    /* Boutons */
    .btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 0.9rem;
    }

    /* Footer */
    footer p {
        text-align: center;
        font-size: 0.9rem;
    }
}

/* =========================
   TRÈS PETITS ÉCRANS (≤ 480px)
========================= */
@media (max-width: 480px) {

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }

    .hero-logo {
        max-width: 150px;
    }
}
.language-switch button {
    margin: 0.3rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
}
.territory-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin: 2rem 0;
}

.flag {
    width: 60px;
}

.flag-main {
    width: 90px;
}
.institutional-links ul {
    list-style: none;
    padding-left: 0;
}

.institutional-links li {
    margin-bottom: 0.6rem;
}

.institutional-links .note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
}
/* =========================
   OFFRES – CARTES
========================= */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
}

.offer-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.2rem 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.offer-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2C5F2D;
}

.offer-card ul {
    padding-left: 1.2rem;
    margin: 0;
}

.offer-card li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* Mise en avant du pack Confort */
.offer-card.highlight {
    border: 2px solid #2C5F2D;
    background: #f7fbf7;
}

.offer-card.highlight h3::after {
    content: "★ Recommandé";
    display: inline-block;
    margin-left: 0.6rem;
    font-size: 0.85rem;
    color: #2C5F2D;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-card {
        padding: 1.8rem 1.5rem;
    }

    .offer-card h3 {
        font-size: 1.15rem;
    }
}
/* =========================
   HERO – CENTRAGE LOGO
========================= */

.hero {
    background-image: url('images/lbc6.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 400px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Conteneur du logo */
.hero-overlay {
    background: rgba(0, 0, 0, 0.35);
    padding: 2rem 3rem;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;   /* 🔥 clé du centrage */
    text-align: center;
}

/* Logo */
.hero-logo {
    max-width: 220px;
    height: auto;
    margin: 0 auto 1rem auto; /* sécurité */
    display: block;
}
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        padding: 1.5rem;
    }

    .hero-logo {
        max-width: 160px;
    }

    .hero-tagline {
        font-size: 1rem;
        line-height: 1.4;
    }
}
/* ---------- PROCESSUS ---------- */
.section-process {
    background: #f7f7f5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
}

.step-number {
    position: absolute;
    top: -14px;
    left: -14px;
    background: #2C5F2D;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #555;
}

.process-footer {
    margin-top: 2.5rem;
    text-align: center;
    font-style: italic;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------- BADGE CCI / CARTE G ---------- */
.cci-badge {
    margin: 1.5rem 0;
    text-align: left;
}

.cci-badge img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

.cci-caption {
    font-size: 0.85rem;
    color: #555;
    margin-top: 0.4rem;
}
/* =========================
   FOOTER – MOBILE
========================= */

footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 2rem 1rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

footer a {
    color: #ffffff;
    font-weight: 500;
    display: inline-block;
    margin: 0.4rem 0;
}

/* Séparateurs plus aérés sur mobile */
@media (max-width: 768px) {

    footer {
        padding: 2.5rem 1.2rem;
    }

    footer p {
        font-size: 0.95rem;
    }

    footer a {
        font-size: 0.95rem;
        padding: 0.3rem 0;
    }
}
/* =========================
   LIEN PAGE VOYAGEURS
========================= */

.traveller-link {
    background-image: url('images/voyageurs.jpg'); /* photo du territoire */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin: 4rem auto;
    max-width: 1200px;
    overflow: hidden;
}

.traveller-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 3rem 2rem;
    text-align: center;
    color: #ffffff;
}

.traveller-overlay h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.traveller-overlay p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.05rem;
}

.btn-traveller {
    background: #ffffff;
    color: #2C5F2D;
    font-weight: 700;
}

.btn-traveller:hover {
    background: #f0f0f0;
}

/* Mobile */
@media (max-width: 768px) {

    .traveller-overlay {
        padding: 2.2rem 1.4rem;
    }

    .traveller-overlay h2 {
        font-size: 1.5rem;
    }

    .traveller-overlay p {
        font-size: 0.95rem;
    }
}
/* =========================
   POURQUOI NOUS CHOISIR
========================= */

.section-why {
    background: #ffffff;
    padding: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

/* Colonne gauche */
.why-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.why-separator {
    display: block;
    width: 80px;
    height: 4px;
    background: #C9A23F;
    margin-bottom: 1.5rem;
}

.why-intro {
    font-size: 1.05rem;
    color: #555;
    max-width: 320px;
}

/* Colonne droite */
.why-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f7f7f7;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border-left: 5px solid #C9A23F;
}

.why-item p {
    margin: 0;
    font-size: 0.95rem;
}

.why-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-left {
        text-align: center;
    }

    .why-separator {
        margin-left: auto;
        margin-right: auto;
    }

    .why-intro {
        margin: 0 auto;
    }
}
/* =========================
   POURQUOI NOUS CHOISIR
   XARNE-LANA
========================= */

.section-why {
    background: #F6F8F7;
    padding: 4.5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 3.5rem;
    align-items: start;
}

/* Colonne gauche */
.why-left h2 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #0E2A32;
    margin-bottom: 1rem;
}

.why-separator {
    display: block;
    width: 90px;
    height: 4px;
    background: #C9A23F;
    margin-bottom: 1.6rem;
}

.why-intro {
    font-size: 1.05rem;
    color: #42585F;
    max-width: 340px;
    line-height: 1.6;
}

/* Colonne droite */
.why-right {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: #ffffff;
    padding: 1.1rem 1.3rem;
    border-radius: 12px;
    border-left: 5px solid #C9A23F;
    box-shadow: 0 4px 14px rgba(14, 42, 50, 0.05);
}

.why-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #0E2A32;
    line-height: 1.5;
}

.why-icon {
    font-size: 1.25rem;
    color: #1F6F5C;
}

/* Effet léger au survol */
.why-item:hover {
    transform: translateY(-2px);
    transition: all 0.25s ease;
    box-shadow: 0 8px 22px rgba(14, 42, 50, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-left {
        text-align: center;
    }

    .why-separator {
        margin-left: auto;
        margin-right: auto;
    }

    .why-intro {
        margin: 0 auto;
    }
}
.cta-voyageurs {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 1.6rem;
    background: var(--xl-vert-profond);
    color: var(--xl-blanc);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
}

.cta-voyageurs:hover {
    background: var(--xl-bleu-nuit);
}
/* ======================
   GASTRONOMIE AVEC PHOTOS
====================== */

.section-gastronomie {
    background: var(--xl-blanc);
}

.gastronomie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.gastronomie-card {
    background: var(--xl-fond-clair);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.gastronomie-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gastronomie-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--xl-bleu-nuit);
}

.gastronomie-card p {
    padding: 0 1.2rem 1.4rem;
    font-size: 0.95rem;
}

.gastronomie-links {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gastronomie-links a {
    font-weight: 500;
    color: var(--xl-vert-profond);
    text-decoration: none;
}

.gastronomie-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1100px) {
    .gastronomie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gastronomie-grid {
        grid-template-columns: 1fr;
    }

    .gastronomie-card img {
        height: 200px;
    }
}