﻿/* ============================================
   LIEU.CSS — Styles communs pages réservation
   Breath by Nolwenn
   Dépend de _variables.css (variables déjà chargées via style.css)
   ============================================ */

/* ── ANCHOR NAV ── */
.anchor-nav {
    position: sticky;
    top: 77px;  /* hauteur exacte du header desktop (16 + 45 + 16) */
    z-index: 90;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.anchor-nav::-webkit-scrollbar { display: none; }

.anchor-nav-inner {
    display: flex;
    gap: 0;
    padding: 0 var(--space-sm);
    width: max-content;
    min-width: 100%;
}

.anchor-link {
    padding: 14px var(--space-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    letter-spacing: 0.2px;
}
.anchor-link:hover { color: var(--primary); }
.anchor-link.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ── HERO ── */
.lieu-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    margin-top: 0;
}

.lieu-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.lieu-hero-bg.loaded { transform: scale(1); }

.lieu-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45,42,40,0.08) 0%,
        rgba(45,42,40,0.25) 50%,
        rgba(45,42,40,0.62) 100%
    );
}

.lieu-breadcrumb {
    position: absolute;
    top: 76px; left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}
.lieu-breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.lieu-breadcrumb a:hover { color: white; }
.lieu-breadcrumb span { opacity: 0.5; }

.lieu-hero-content {
    position: relative; z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md) 22px;
}

.lieu-hero-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
    width: fit-content;
}

.lieu-hero h1 {
    font-size: 44px !important;
    font-weight: 900 !important;
    color: white !important;
    line-height: 1.05 !important;
    letter-spacing: -0.8px !important;
    margin-bottom: 10px !important;
}

.lieu-hero-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.lieu-hero-sub-dot { opacity: 0.4; }

/* ── SECTION WRAPPERS ── */
.lieu-section { padding: 56px 0; }

.lieu-section-inner {
    padding: 0 var(--space-sm);
    max-width: 680px;
    margin: 0 auto;
}

.lieu-section.bg-cream { background: var(--bg-cream); }
.lieu-section.bg-sage  { background: var(--bg-sage); }
.lieu-section.bg-white { background: var(--white); }
.lieu-section.bg-light { background: var(--bg-light); }

.lieu-sep {
    height: 1px;
    background: rgba(0,0,0,0.06);
    max-width: 648px;
    margin: 0 auto;
}

/* ── EN-TÊTES DE SECTION ── */
.lieu-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.lieu-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.lieu-subtitle {
    font-size: var(--fs-body-lg);
    color: var(--text-mid);
    margin-bottom: var(--space-lg);
    line-height: var(--lh-body);
    max-width: 480px;
}

/* ── CARDS OFFRES ── */
.lieu-offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
    border: 1.5px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
}
.lieu-offer-card:hover {
    box-shadow: var(--shadow-lifted);
    transform: translateY(-3px);
    border-color: rgba(212,92,101,0.15);
}

.lieu-offer-header {
    padding: var(--space-sm) var(--space-sm) 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.lieu-offer-icon {
    width: 46px; height: 46px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(95,143,138,0.12), rgba(95,143,138,0.04));
}

.lieu-offer-info { flex: 1; }
.lieu-offer-type {
    font-size: 10px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 3px;
}
.lieu-offer-info h3 {
    font-size: 17px !important; font-weight: 700 !important; color: var(--text-dark) !important;
    margin-bottom: 3px !important;
}
.lieu-offer-meta {
    font-size: var(--fs-sm); color: var(--text-mid);
    display: flex; flex-wrap: wrap; gap: var(--space-xs);
}

.lieu-offer-price { text-align: right; flex-shrink: 0; }
.lieu-offer-price .amount {
    font-size: 30px; font-weight: 900; color: var(--primary); line-height: 1;
}
.lieu-offer-price .per {
    font-size: 11px; color: var(--text-mid); font-weight: 500;
}

.lieu-offer-body { padding: 12px var(--space-sm) 0; }

.lieu-offer-description {
    font-size: var(--fs-sm); color: var(--text-mid); line-height: var(--lh-body);
    margin-bottom: 12px;
}

.lieu-offer-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.lieu-offer-pill {
    background: var(--bg-cream); color: var(--text-mid);
    font-size: 11px; font-weight: 500;
    padding: 5px 12px; border-radius: var(--radius-full);
}

/* ── LIEN INDIVIDUELLE ── */
.lieu-individuelle-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-sm);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s;
    border: 1.5px solid rgba(212,92,101,0.12);
    margin-bottom: 14px;
}
.lieu-individuelle-link:hover {
    border-color: rgba(212,92,101,0.3);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.lieu-individuelle-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(212,92,101,0.1), rgba(212,92,101,0.03));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.lieu-individuelle-type {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--primary); margin-bottom: 2px;
}
.lieu-individuelle-title {
    font-size: 14px; font-weight: 600; color: var(--text-dark);
}
.lieu-individuelle-arrow { color: var(--primary); font-size: 18px; }

/* ── ACCORDÉON CALENDLY ── */
.lieu-calendly-toggle {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.lieu-calendly-toggle:hover { background: #4a7a75; }
.lieu-calendly-toggle.primary { background: var(--primary); }
.lieu-calendly-toggle.primary:hover { background: var(--primary-dark); }

.lieu-toggle-icon { transition: transform 0.3s ease; font-size: 20px; line-height: 1; }
.lieu-calendly-toggle.open .lieu-toggle-icon { transform: rotate(45deg); }
.lieu-calendly-toggle.open { border-radius: 0; }

.lieu-calendly-embed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-cream);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.lieu-calendly-embed.open { max-height: 700px; }

.lieu-calendly-placeholder {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    color: var(--text-mid);
    font-size: var(--fs-sm);
}
.lieu-calendly-placeholder .cal-icon { font-size: 38px; margin-bottom: 12px; }
.lieu-calendly-placeholder strong {
    display: block; color: var(--text-dark); font-size: 15px;
    font-weight: 600; margin-bottom: 6px;
}

/* ── ÉTAPES ATELIER ── */
.lieu-atelier-steps { display: flex; flex-direction: column; }

.lieu-atelier-step { display: flex; align-items: flex-start; gap: var(--space-sm); }

.lieu-atelier-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212,92,101,0.3);
}

.lieu-atelier-content {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-sm);
    flex: 1;
    box-shadow: var(--shadow-soft);
}
.lieu-atelier-content h4 {
    font-size: 15px !important; font-weight: 700 !important; color: var(--text-dark) !important;
    margin-bottom: 6px !important;
}
.lieu-atelier-content p {
    font-size: var(--fs-sm) !important; color: var(--text-mid) !important;
    line-height: 1.6 !important; margin-bottom: var(--space-xs) !important;
}
.lieu-atelier-duration {
    display: inline-block;
    background: var(--bg-cream); color: var(--accent);
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: var(--radius-full);
}

.lieu-atelier-line {
    width: 2px; height: 20px;
    background: linear-gradient(to bottom, var(--primary), rgba(212,92,101,0.2));
    margin-left: 17px;
}

/* ── DESCRIPTION LIEU ── */
.lieu-description-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px var(--space-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 14px;
}
.lieu-description-card p {
    font-size: var(--fs-body) !important; color: var(--text-mid) !important;
    line-height: 1.75 !important; margin-bottom: 12px !important;
}
.lieu-description-card p:last-child { margin-bottom: 0 !important; }
.lieu-description-card strong { color: var(--text-dark); font-weight: 600; }

/* ── GALERIE ── */
.lieu-galerie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: var(--space-md);
    margin-bottom: 0;
}
.lieu-galerie-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-cream);
}
.lieu-galerie-photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.lieu-galerie-photo:hover img { transform: scale(1.04); }

/* Photo éditoriale : 1ère et dernière en pleine largeur */
.lieu-galerie-photo:first-child,
.lieu-galerie-photo:nth-child(4) {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
}

/* ── INFOS PRATIQUES ── */
.lieu-infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.lieu-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-sm);
    display: flex; align-items: flex-start; gap: 14px;
    box-shadow: var(--shadow-soft);
    border-left: 3px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lieu-info-card:hover {
    box-shadow: var(--shadow-lifted);
}
.lieu-info-card:nth-child(1) { border-left-color: var(--primary); }
.lieu-info-card:nth-child(2) { border-left-color: var(--accent); }
.lieu-info-card:nth-child(3) { border-left-color: var(--secondary); }
.lieu-info-card:nth-child(4) { border-left-color: var(--primary); }
.lieu-info-card:nth-child(5) { border-left-color: var(--accent); }
.lieu-info-card:nth-child(6) { border-left-color: var(--secondary); }

.lieu-info-icon {
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.lieu-info-card:nth-child(1) .lieu-info-icon,
.lieu-info-card:nth-child(4) .lieu-info-icon { background: rgba(212,92,101,0.09); }
.lieu-info-card:nth-child(2) .lieu-info-icon,
.lieu-info-card:nth-child(5) .lieu-info-icon { background: rgba(95,143,138,0.09); }
.lieu-info-card:nth-child(3) .lieu-info-icon,
.lieu-info-card:nth-child(6) .lieu-info-icon { background: rgba(155,170,151,0.12); }
.lieu-info-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text-light); margin-bottom: 4px;
}
.lieu-info-value {
    font-size: 14px; font-weight: 600; color: var(--text-dark);
    line-height: 1.4; margin-bottom: 2px;
}
.lieu-info-detail {
    font-size: var(--fs-sm); color: var(--text-mid); line-height: 1.5;
}

/* ── TÉMOIGNAGES ── */
.lieu-temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    align-items: start;
}

.lieu-temoignage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-sm) var(--space-sm);
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--primary);
    position: relative;
}
.lieu-temoignage-quote {
    font-size: 32px; color: var(--primary); opacity: 0.2;
    line-height: 1; position: absolute;
    top: 14px; left: 16px;
    font-family: Georgia, serif;
}
.lieu-temoignage-text {
    font-size: var(--fs-body) !important; color: var(--text-mid) !important;
    line-height: 1.7 !important; font-style: italic;
    margin-bottom: 14px !important; padding-top: 8px;
}
.lieu-temoignage-author { display: flex; align-items: center; gap: 10px; }
.lieu-temoignage-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: white; flex-shrink: 0;
}
.lieu-temoignage-name {
    font-size: var(--fs-sm); font-weight: 600; color: var(--text-dark);
}
.lieu-temoignage-stars { font-size: 11px; color: #F5B942; letter-spacing: 1px; }

/* ── FAQ — aligné exactement sur .faq-item de _faq.css ── */
.lieu-faq-list { display: flex; flex-direction: column; }

.lieu-faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}
.lieu-faq-question {
    padding: var(--space-md);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: var(--space-sm); user-select: none;
    background: transparent;
}
.lieu-faq-question h3 {
    font-size: 17px !important; font-weight: 500 !important; color: var(--text-dark) !important;
    margin: 0 !important; line-height: 1.4 !important;
}
.lieu-faq-toggle {
    width: 32px; height: 32px; min-width: 32px;
    background: var(--bg-cream); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; line-height: 1; color: var(--primary); flex-shrink: 0;
    transition: all 0.3s ease;
}
.lieu-faq-item.active .lieu-faq-toggle {
    background: var(--primary); color: white; transform: rotate(45deg);
}
.lieu-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.lieu-faq-item.active .lieu-faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md);
}
.lieu-faq-answer p {
    font-size: 15px !important; color: var(--text-mid) !important;
    line-height: 1.7 !important;
    margin: 0 !important; padding: 0 !important;
}
.lieu-faq-answer p:first-of-type { padding-top: var(--space-md) !important; }

/* ── CTA FINAL ── */
.lieu-cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, #c17b68 60%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md) var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-strong);
}
.lieu-cta-final h3 {
    font-size: 22px !important; font-weight: 900 !important; color: white !important;
    margin-bottom: 8px !important;
}
.lieu-cta-final p {
    font-size: var(--fs-body) !important; color: rgba(255,255,255,0.88) !important;
    margin-bottom: var(--space-md) !important; line-height: 1.6 !important;
}
.lieu-cta-final-btn {
    display: inline-block;
    background: var(--white); color: var(--primary);
    padding: 16px 36px; border-radius: var(--radius-full);
    text-decoration: none; font-weight: 500; font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.lieu-cta-final-btn:hover {
    background: rgba(255,255,255,0.92);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
