/* ==========================================================================
   La Créole Cata — Design system "Accueil"
   Refonte visuelle inspirée du fichier Accueil.dc.html (Claude Design).
   Portée : coquille globale (header/footer) + page d'accueil.
   Toutes les classes sont préfixées .cc- pour éviter toute collision avec
   le thème existant (bootsnav / style.css). Aucune police globale n'est
   surchargée : les typographies sont appliquées uniquement aux composants .cc-.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Public+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --cc-navy: #0c2f63;
    --cc-navy-deep: #0a2450;
    --cc-ink: #122740;
    --cc-accent: #12b3d1;
    --cc-accent-2: #0a7fa6;
    --cc-sand: #f6f2ea;
    --cc-sand-2: #f2ede3;
    --cc-line: #ece5d8;
    --cc-muted: #4c5a6c;
    --cc-muted-2: #6b7787;
    --cc-white: #ffffff;
    --cc-font-ui: 'Outfit', system-ui, sans-serif;
    --cc-font-body: 'Public Sans', system-ui, sans-serif;
    --cc-max: 1240px;
    --cc-radius: 20px;
    --cc-shadow-btn: 0 8px 20px -8px rgba(12, 47, 99, .5);
}

/* Keyframes */
@keyframes ccFloatUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}
@keyframes ccSlowZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

/* Base utilitaires --------------------------------------------------------- */
.cc-container { max-width: var(--cc-max); margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.cc-eyebrow {
    display: inline-block; font-family: var(--cc-font-ui); font-weight: 600;
    font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--cc-accent);
}
.cc-h2 {
    font-family: var(--cc-font-ui); font-weight: 700;
    font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -.02em;
    margin-top: 12px; color: var(--cc-navy);
}
.cc-lead { font-family: var(--cc-font-body); font-size: 17px; line-height: 1.65; color: var(--cc-muted); margin-top: 16px; }

/* Boutons pilule ----------------------------------------------------------- */
.cc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--cc-font-ui); font-weight: 600; font-size: 16px; line-height: 1;
    padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent;
    cursor: pointer; transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
    text-decoration: none;
}
.cc-btn-sm { font-size: 15px; padding: 11px 22px; }
.cc-btn-accent { color: #fff; background: var(--cc-accent); box-shadow: var(--cc-shadow-btn); }
.cc-btn-accent:hover { background: var(--cc-navy); color: #fff; }
.cc-btn-light { color: var(--cc-navy); background: #fff; box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .4); }
.cc-btn-light:hover { background: var(--cc-accent); color: #fff; }
.cc-btn-outline { color: #fff; border-color: rgba(255, 255, 255, .6); background: transparent; }
.cc-btn-outline:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.cc-btn-navy { color: #fff; background: var(--cc-navy); }
.cc-btn-navy:hover { background: var(--cc-accent); color: #fff; }

/* ==========================================================================
   BARRE PROMO
   ========================================================================== */
.cc-promo {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 9px 20px; background: var(--cc-navy); color: #eaf6fb;
    font-family: var(--cc-font-body); font-size: 13.5px; letter-spacing: .02em; text-align: center;
}
.cc-promo .cc-promo-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--cc-accent);
    box-shadow: 0 0 0 4px rgba(18, 179, 209, .25); flex: 0 0 auto;
}
.cc-promo strong { color: #fff; }
.cc-promo a { color: #fff; text-decoration: underline; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.cc-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, .92); -webkit-backdrop-filter: saturate(1.4) blur(10px);
    backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--cc-line);
}
.cc-header-inner {
    max-width: var(--cc-max); margin: 0 auto; padding: 14px 28px;
    display: flex; align-items: center; gap: 32px;
}
.cc-logo { display: flex; align-items: center; flex: 0 0 auto; }
.cc-logo img { height: 46px; width: auto; display: block; }
.cc-nav {
    display: flex; align-items: center; gap: 26px; margin-left: auto;
    font-family: var(--cc-font-ui); font-weight: 500; font-size: 15px; list-style: none; margin-bottom: 0; padding: 0;
}
.cc-nav > li { position: relative; }
.cc-nav > li > a { color: var(--cc-ink); text-decoration: none; transition: color .2s ease; display: inline-flex; align-items: center; gap: 6px; }
.cc-nav > li > a:hover { color: var(--cc-accent); }
.cc-nav .cc-caret { font-size: 11px; opacity: .7; }
/* Sous-menus */
.cc-nav .cc-submenu {
    position: absolute; top: calc(100% + 12px); left: 0; min-width: 210px;
    background: #fff; border: 1px solid var(--cc-line); border-radius: 14px; padding: 8px;
    box-shadow: 0 24px 48px -24px rgba(12, 47, 99, .35);
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s ease; z-index: 20;
    list-style: none; margin: 0;
}
.cc-nav > li:hover > .cc-submenu,
.cc-nav > li.cc-open > .cc-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.cc-submenu li { position: relative; }
.cc-submenu a {
    display: block; padding: 9px 14px; border-radius: 9px; font-size: 14.5px; color: var(--cc-ink); text-decoration: none;
}
.cc-submenu a:hover { background: var(--cc-sand); color: var(--cc-accent-2); }
.cc-submenu .cc-submenu { top: -8px; left: calc(100% + 6px); }
.cc-header-cta { flex: 0 0 auto; }
/* Burger */
.cc-burger {
    display: none; margin-left: auto; width: 44px; height: 40px; border: 0; background: transparent;
    cursor: pointer; padding: 8px; flex-direction: column; justify-content: center; gap: 5px;
}
.cc-burger span { display: block; height: 2px; width: 100%; background: var(--cc-navy); border-radius: 2px; transition: .25s; }
.cc-nav-mobile-cta { display: none; }

@media (max-width: 991px) {
    .cc-header-inner { gap: 14px; }
    .cc-burger { display: flex; }
    .cc-header-cta { display: none; }
    .cc-nav {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 86vw);
        flex-direction: column; align-items: stretch; gap: 4px; margin: 0; padding: 84px 22px 30px;
        background: #fff; box-shadow: -20px 0 60px -30px rgba(0, 0, 0, .4);
        transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; z-index: 1100;
    }
    .cc-nav.cc-open { transform: translateX(0); }
    .cc-nav > li > a { padding: 12px 6px; border-bottom: 1px solid var(--cc-line); }
    .cc-nav .cc-submenu {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: 0; border-radius: 0; padding: 0 0 6px 12px; min-width: 0; display: none;
    }
    .cc-nav > li.cc-open > .cc-submenu { display: block; }
    .cc-nav-mobile-cta { display: block; margin-top: 16px; }
    .cc-nav-mobile-cta .cc-btn { width: 100%; justify-content: center; }
    .cc-header.cc-menu-open .cc-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .cc-header.cc-menu-open .cc-burger span:nth-child(2) { opacity: 0; }
    .cc-header.cc-menu-open .cc-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .cc-scrim {
        position: fixed; inset: 0; background: rgba(6, 26, 55, .45); opacity: 0; visibility: hidden;
        transition: .3s; z-index: 1090;
    }
    .cc-header.cc-menu-open .cc-scrim { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.cc-hero {
    position: relative; min-height: calc(100vh - 130px); display: flex; align-items: flex-end; overflow: hidden;
    padding:0;
    background: var(--cc-navy-deep);
}
.cc-hero-slide {
    position: relative; min-height: calc(100vh - 130px); display: flex; align-items: flex-end; overflow: hidden;
}
.cc-hero-media {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: ccSlowZoom 12s ease-out both;
}
.cc-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6, 26, 55, .28) 0%, rgba(6, 26, 55, .05) 40%, rgba(6, 26, 55, .72) 100%);
}
.cc-hero-inner {
    position: relative; max-width: var(--cc-max); width: 100%; margin: 0 auto; padding: 0 28px 72px;
}
.cc-hero-copy { max-width: 760px; animation: ccFloatUp .9s ease both; }
.cc-hero .cc-eyebrow { color: #bfeaf6; margin-bottom: 20px; }
.cc-hero h1 {
    font-family: var(--cc-font-ui); font-weight: 800; color: #fff;
    font-size: clamp(38px, 6vw, 74px); line-height: 1.02; letter-spacing: -.02em;
    text-shadow: 0 2px 30px rgba(0, 20, 50, .35); margin: 0;
}
.cc-hero p {
    margin-top: 22px; font-family: var(--cc-font-body); font-size: clamp(17px, 2vw, 21px);
    line-height: 1.5; color: #eef6fb; max-width: 560px; text-shadow: 0 1px 14px rgba(0, 20, 50, .4);
}
.cc-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Réutilise le swiper existant : neutralise les hauteurs par défaut du thème */
.cc-hero .swiper-wrapper { align-items: stretch; }
.cc-hero .swiper-slide { height: auto; }
.cc-hero .swiper-button-next, .cc-hero .swiper-button-prev { color: #fff; }
.cc-hero .swiper-pagination-bullet { background: #fff; }

@media (max-width: 991px) {
    .cc-hero, .cc-hero-slide { min-height: 78vh; }
    .cc-hero-inner { padding-bottom: 48px; }
}

/* ==========================================================================
   SECTIONS ACCUEIL (portées par .cc-home pour ne pas toucher les autres pages)
   ========================================================================== */
.cc-section { max-width: var(--cc-max); margin: 0 auto; padding: 72px 28px 40px; }
.cc-section-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.cc-section-head .cc-h2 { margin-top: 12px; }
.cc-link-more { font-family: var(--cc-font-ui); font-weight: 600; font-size: 15px; color: var(--cc-accent); text-decoration: none; }
.cc-link-more:hover { color: var(--cc-navy); }

/* Value / Expérience (zone 24) -------------------------------------------- */
.cc-value { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.cc-value .cc-lead { max-width: 520px; }
.cc-value-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cc-value-media img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 16px; border: 1px solid var(--cc-line);
    aspect-ratio: 3 / 4;
}
.cc-value .cc-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.cc-value .cc-actions a { text-decoration: none; }
@media (max-width: 860px) {
    .cc-value { grid-template-columns: 1fr; gap: 32px; }
}

/* Cartes excursions (zone 25 / 28) ---------------------------------------- */
.cc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cc-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--cc-line);
    border-radius: var(--cc-radius); overflow: hidden; box-shadow: 0 1px 2px rgba(12, 47, 99, .04);
    transition: transform .3s ease, box-shadow .3s ease; text-decoration: none; color: inherit; height: 100%;
}
.cc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -22px rgba(12, 47, 99, .4); }
.cc-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.cc-card-media img { width: 100%; height: 100%; object-fit: cover; }
.cc-badge {
    position: absolute; top: 14px; left: 14px; font-family: var(--cc-font-ui); font-weight: 600;
    font-size: 12px; letter-spacing: .03em; color: var(--cc-navy); background: rgba(255, 255, 255, .94);
    padding: 7px 13px; border-radius: 999px;
}
.cc-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.cc-card-kicker { font-family: var(--cc-font-ui); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--cc-accent); }
.cc-card-body h3 { font-family: var(--cc-font-ui); font-weight: 700; font-size: 21px; line-height: 1.15; color: var(--cc-navy); margin: 7px 0 0; }
.cc-card-body p { font-family: var(--cc-font-body); font-size: 14.5px; line-height: 1.55; color: #5c6a7b; margin-top: 10px; flex: 1; }
.cc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.cc-tag { font-family: var(--cc-font-body); font-size: 12.5px; font-weight: 500; color: var(--cc-muted); background: var(--cc-sand-2); padding: 6px 12px; border-radius: 8px; }
.cc-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-family: var(--cc-font-ui); font-weight: 600; font-size: 15px; color: var(--cc-accent); }
@media (max-width: 980px) { .cc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cc-cards { grid-template-columns: 1fr; } }

/* Bandeau sur-devis -------------------------------------------------------- */
.cc-devis {
    margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
    background: linear-gradient(120deg, var(--cc-navy), #0a4f7a); border-radius: var(--cc-radius);
    padding: 30px 34px; color: #eaf6fb;
}
.cc-devis-text { flex: 1; min-width: 260px; }
.cc-devis-text strong { font-family: var(--cc-font-ui); font-weight: 700; font-size: 22px; color: #fff; display: block; }
.cc-devis-text p { font-family: var(--cc-font-body); font-size: 15px; line-height: 1.5; color: #bcd6ea; margin-top: 6px; max-width: 640px; }
.cc-devis .cc-btn { white-space: nowrap; }

/* Galerie (zone 22) -------------------------------------------------------- */
.cc-gallery-wrap { background: #fff; border-top: 1px solid var(--cc-line); border-bottom: 1px solid var(--cc-line); margin-top: 60px; }
.cc-gallery-inner { max-width: var(--cc-max); margin: 0 auto; padding: 80px 28px; }
.cc-gallery-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.cc-gallery-head .cc-lead { margin-left: auto; margin-right: auto; }
.cc-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.cc-gallery figure { margin: 0; border-radius: 18px; overflow: hidden; }
.cc-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.cc-gallery figure:nth-child(4) { grid-column: span 2; }
@media (max-width: 780px) {
    .cc-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .cc-gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .cc-gallery figure:nth-child(4) { grid-column: span 2; }
}

/* Stats -------------------------------------------------------------------- */
.cc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.cc-stat-value { font-family: var(--cc-font-ui); font-weight: 800; font-size: 32px; color: var(--cc-accent); }
.cc-stat-label { font-family: var(--cc-font-body); font-size: 14px; color: #5c6a7b; margin-top: 4px; }
@media (max-width: 640px) { .cc-stats { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* CTA Réserver ------------------------------------------------------------- */
.cc-cta { position: relative; overflow: hidden; }
.cc-cta-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cc-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 30, 60, .85) 0%, rgba(8, 30, 60, .55) 60%, rgba(8, 30, 60, .35) 100%); }
.cc-cta-inner { position: relative; max-width: var(--cc-max); margin: 0 auto; padding: 96px 28px; }
.cc-cta-copy { max-width: 560px; }
.cc-cta-copy h2 { font-family: var(--cc-font-ui); font-weight: 800; font-size: clamp(30px, 4vw, 52px); line-height: 1.04; letter-spacing: -.02em; color: #fff; margin: 0; }
.cc-cta-copy p { font-family: var(--cc-font-body); font-size: 18px; line-height: 1.55; color: #dcebf5; margin-top: 16px; }
.cc-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
@media (max-width: 640px) { .cc-cta-inner { padding: 64px 28px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.cc-footer { background: var(--cc-navy-deep); color: #c6d6e8; font-family: var(--cc-font-body); }
.cc-footer-top {
    max-width: var(--cc-max); margin: 0 auto; padding: 64px 28px 30px;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.cc-footer-logo { height: 46px; width: auto; background: #fff; padding: 9px 14px; border-radius: 12px; display: block; }
.cc-footer-about { font-size: 14.5px; line-height: 1.6; color: #9fb6d2; margin-top: 18px; max-width: 300px; }
.cc-socials { display: flex; gap: 10px; margin-top: 20px; }
.cc-socials a {
    width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .08);
    display: flex; align-items: center; justify-content: center; color: #dce8f6; text-decoration: none; transition: .2s;
}
.cc-socials a:hover { background: var(--cc-accent); color: #fff; }
.cc-footer-col-title { font-family: var(--cc-font-ui); font-weight: 600; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.cc-footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.cc-footer-links a, .cc-footer-links span { color: #a9c0da; text-decoration: none; }
.cc-footer-links a:hover { color: #fff; }
.cc-footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.cc-footer-bottom-inner {
    max-width: var(--cc-max); margin: 0 auto; padding: 20px 28px;
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
    font-size: 13px; color: #8ba4c2;
}
.cc-footer-bottom-inner a { color: #8ba4c2; }
.cc-footer-bottom-inner a:hover { color: #fff; }
@media (max-width: 900px) {
    .cc-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
    .cc-footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ (accordéon) — zone type 40
   ========================================================================== */
.cc-faq-section { max-width: var(--cc-max); margin: 0 auto; padding: 56px 28px; }
.cc-faq-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.cc-faq-head .cc-lead { margin-left: auto; margin-right: auto; }
.cc-faq { max-width: 860px; margin: 0 auto; }
.cc-faq-item {
    background: #fff; border: 1px solid var(--cc-line); border-radius: 16px; margin-bottom: 14px;
    overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease;
}
.cc-faq-item:hover { box-shadow: 0 12px 30px -20px rgba(12, 47, 99, .35); }
.cc-faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%;
    padding: 20px 24px; cursor: pointer; text-decoration: none; text-align: left;
    font-family: var(--cc-font-ui); font-weight: 600; font-size: 17px; line-height: 1.35; color: var(--cc-navy);
    transition: color .2s ease;
}
.cc-faq-q:hover { color: var(--cc-accent-2); }
.cc-faq-icon {
    position: relative; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
    background: var(--cc-sand-2); transition: background .25s ease;
}
.cc-faq-icon::before, .cc-faq-icon::after {
    content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px;
    background: var(--cc-accent-2); border-radius: 2px; transform: translate(-50%, -50%);
    transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.cc-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.cc-faq-q:not(.collapsed) .cc-faq-icon { background: var(--cc-accent); }
.cc-faq-q:not(.collapsed) .cc-faq-icon::before,
.cc-faq-q:not(.collapsed) .cc-faq-icon::after { background: #fff; }
.cc-faq-q:not(.collapsed) .cc-faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }
.cc-faq-a-inner {
    padding: 2px 24px 22px; font-family: var(--cc-font-body); font-size: 15.5px; line-height: 1.65; color: var(--cc-muted);
}
.cc-faq-a-inner :last-child { margin-bottom: 0; }
.cc-faq-a-inner a { color: var(--cc-accent-2); }
.cc-faq-a-inner a:hover { color: var(--cc-navy); }
@media (max-width: 640px) {
    .cc-faq-q { font-size: 16px; padding: 16px 18px; }
    .cc-faq-a-inner { padding: 2px 18px 18px; }
}
