/* ===========================================
   Template fleuriste-eden — Eden (typo-only hero)
   Cormorant Garamond + DM Sans — Rose fleur/Brun/Creme rose
   =========================================== */

:root {
    --primary: #D4728A;
    --secondary: #FFF9FA;
    --accent: #2D1B24;
    --text: #2D1B24;
    --text-light: #FFF9FA;
    --text-muted: #9A7A82;
    --bg: #FFF9FA;
    --bg-dark: #2D1B24;
    --bg-light: #FFF9FA;
    --bg-beige: #F8EEF0;
    --border: #E8CDD4;
    --border-light: #F3DEE2;
    --radius: 0px;
    --shadow: 0 8px 40px rgba(45,27,36,0.08);
    --transition: 300ms ease;
    --nav-height: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
a { color: var(--primary); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.75; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 680px; }

/* -- Bandeau promo -- */
.bandeau-promo { background: var(--primary); color: #fff; text-align: center; padding: 10px 48px 10px 16px; font-size: 13px; font-weight: 500; position: fixed; top: 0; left: 0; right: 0; z-index: 200; font-family: 'DM Sans', sans-serif; }
.bandeau-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 20px; cursor: pointer; color: inherit; }

/* -- Nav -- */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); background: rgba(255,249,250,0.95); backdrop-filter: blur(12px); z-index: 100; border-bottom: 1px solid var(--border-light); transition: box-shadow var(--transition); }
.nav.scrolled { box-shadow: 0 2px 16px rgba(45,27,36,0.05); }
.bandeau-promo ~ .nav { top: 40px; }
.nav-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-style: italic; font-weight: 300; color: var(--accent); text-decoration: none; }
.nav-logo-img { height: 38px; width: auto; display: block; object-fit: contain; }
.nav-logo-initiale { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: 12px; font-weight: 400; letter-spacing: 0.5px; text-decoration: none; transition: color var(--transition); font-family: 'DM Sans', sans-serif; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); opacity: 1; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--accent); transition: all var(--transition); }

/* -- Hero: Eden (typo-only) -- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: #fff; }
.hero-bg, .hero-overlay, .hero-content { display: none; }
.hero-card, .hero-eyebrow { display: none; }
.hero-eden { position: relative; z-index: 2; padding: 20px; }
.hero-eden h1 { font-family: 'Cormorant Garamond', serif; font-size: 15vw; font-style: italic; font-weight: 300; color: var(--primary); line-height: 1; margin-bottom: 24px; }
.hero-eden-sep { width: 60px; height: 1px; background: var(--border); margin: 0 auto 24px; }
.hero-eden p { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-muted); font-weight: 300; letter-spacing: 0.5px; max-width: 380px; margin: 0 auto; line-height: 1.7; }

/* -- Boutons -- */
.btn-cta { display: inline-block; background: var(--primary); color: #fff; padding: 13px 34px; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; border: 1.5px solid var(--primary); border-radius: 30px; cursor: pointer; transition: all var(--transition); text-decoration: none; font-family: 'DM Sans', sans-serif; }
.btn-cta:hover { background: transparent; color: var(--primary); opacity: 1; }
.btn-cta-large { font-size: 14px; padding: 14px 44px; margin-top: 16px; }
.section-dark .btn-cta { background: rgba(255,249,250,0.12); color: #fff; border-color: rgba(255,249,250,0.4); }
.section-dark .btn-cta:hover { background: rgba(255,249,250,0.22); }
.section-terracotta .btn-cta { background: #fff; color: var(--primary); border-color: #fff; }
.section-terracotta .btn-cta:hover { background: transparent; color: #fff; }
.contact-phone { margin: 16px 0 8px; }
.phone-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-style: italic; font-weight: 300; color: var(--primary); text-decoration: none; display: inline-block; }
.section-terracotta .phone-number { color: #fff; }

/* -- Sections -- */
.section { padding: 96px 0; }
.section-beige { background: var(--bg-beige); }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-terracotta { background: var(--primary); color: #fff; }
.section-label { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif; }
.section-dark .section-label { color: rgba(255,249,250,0.4); }
.section-title { text-align: center; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; font-style: italic; color: var(--accent); }
.section-dark .section-title { color: var(--text-light); }
.section-terracotta .section-title { color: #fff; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 560px; margin: 0 auto 48px; font-size: 15px; line-height: 1.8; font-weight: 300; }
.section-dark .section-subtitle { color: rgba(255,249,250,0.5); }
.section-terracotta .section-subtitle { color: rgba(255,255,255,0.85); }

/* -- A propos: grid texte/photo inversee -- */
.apropos-eden { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: center; }
.apropos-eden-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-style: italic; font-weight: 300; color: var(--accent); margin-bottom: 20px; line-height: 1.1; }
.apropos-eden-text p { font-size: 15px; line-height: 1.9; color: var(--text-muted); margin-bottom: 28px; font-weight: 300; min-width: 0; }
.apropos-eden-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.placeholder-img { background: var(--border-light); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; }
.section-dark .placeholder-img { background: rgba(255,249,250,0.06); }

/* -- Split layout (compat modules) -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; color: var(--accent); font-style: italic; }
.split-text p { font-size: 15px; line-height: 1.8; color: var(--text-muted); min-width: 0; }
.split-image img { width: 100%; box-shadow: var(--shadow); }

/* -- Menu / Catalogue -- */
.menu-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.menu-tab { padding: 9px 22px; background: transparent; color: rgba(255,249,250,0.4); border: 1px solid rgba(255,249,250,0.2); border-radius: 30px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all var(--transition); }
.menu-tab:hover { border-color: var(--primary); color: var(--primary); }
.menu-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.menu-cat { display: none; }
.menu-cat.active { display: block; }
.menu-grid { max-width: 680px; margin: 0 auto; }
.menu-item { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(255,249,250,0.1); }
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; margin-bottom: 4px; color: var(--text-light); }
.menu-item-info p { font-size: 13px; color: rgba(255,249,250,0.4); }
.menu-item-prix { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--primary); white-space: nowrap; margin-left: 20px; flex-shrink: 0; }

/* -- Horaires -- */
.horaires-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.horaires-table tr { border-bottom: 1px solid var(--border); }
.horaires-table td { padding: 12px 0; font-size: 15px; }
.jour { font-weight: 500; width: 120px; font-family: 'DM Sans', sans-serif; }
.ferme .heures { color: var(--text-muted); font-style: italic; }
.coordonnees { margin-top: 20px; }
.coord-item { margin-bottom: 8px; font-size: 15px; color: var(--text-muted); }
.coord-item a { color: var(--primary); }
.map-container iframe { width: 100%; height: 100%; min-height: 300px; border: none; }

/* -- Footer -- */
.footer { background: var(--accent); color: rgba(255,249,250,0.45); padding: 56px 0 28px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-style: italic; color: var(--text-light); display: block; margin-bottom: 14px; font-weight: 300; }
.footer h4 { color: rgba(255,249,250,0.5); margin-bottom: 14px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.footer a { color: rgba(255,249,250,0.45); }
.footer a:hover { color: var(--text-light); opacity: 1; }
.footer p { margin-bottom: 6px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,249,250,0.08); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; }
.footer-credit { color: rgba(255,249,250,0.18); }
.footer-credit a { color: rgba(255,249,250,0.18); }

/* -- Formulaires -- */
.resa-back { background: none; border: none; color: var(--primary); cursor: pointer; font-size: 0.88rem; margin-bottom: 16px; padding: 0; text-decoration: underline; }
.resa-form .form-group { margin-bottom: 16px; }
.resa-form label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.88rem; }
.resa-form input, .resa-form select, .resa-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); font-size: 1rem; font-family: inherit; background: #fff; color: var(--text); border-radius: 4px; }
.resa-form input:focus, .resa-form select:focus, .resa-form textarea:focus { outline: none; border-color: var(--primary); }
.form-error { color: #c0392b; font-size: 0.85rem; margin-bottom: 12px; padding: 8px 12px; background: #fdf0ef; border-radius: 4px; }
.resa-success { text-align: center; padding: 40px 0; }
.resa-success-icon { font-size: 3rem; color: var(--primary); margin-bottom: 12px; }
.resa-success h3 { font-size: 1.4rem; margin-bottom: 8px; }
.resa-success p { color: var(--text-muted); margin-bottom: 24px; }

/* -- Lang switcher -- */
.lang-switcher { display: flex; align-items: center; gap: 4px; margin-left: 16px; }
.lang-btn { background: transparent; border: 1px solid var(--border); color: var(--text-muted); border-radius: 4px; padding: 3px 7px; font-size: 0.7rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* -- WhatsApp -- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 90; transition: transform var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); opacity: 1; }

/* -- Responsive -- */
@media (max-width: 900px) {
    .hero-eden h1 { font-size: 18vw; }
    .apropos-eden { grid-template-columns: 1fr; gap: 40px; }
    .apropos-eden-img { order: -1; max-width: 340px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(255,249,250,0.98); flex-direction: column; gap: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 300ms ease; }
    .nav-links.open { max-height: 440px; }
    .nav-links li { border-bottom: 1px solid var(--border-light); }
    .nav-links a { display: block; padding: 14px 24px; color: var(--text); }
    .split { grid-template-columns: 1fr; gap: 24px; }
    .split-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 64px 0; }
}
@media (max-width: 480px) {
    .hero-eden h1 { font-size: 22vw; }
}
