/* ===========================================
   Template hotel-noir — Hotel Classique
   Cormorant Garamond + Lato — Marine / Beige / Or
   Hero photo plein ecran, layout clair et epure
   =========================================== */

:root {
  --marine: #1B3A5C;
  --marine-dark: #12293F;
  --marine-light: rgba(27,58,92,0.06);
  --or: #C19A5B;
  --or-light: rgba(193,154,91,0.12);
  --or-line: rgba(193,154,91,0.3);
  --beige: #F5F0E8;
  --beige-off: #EDE8DF;
  --bg: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #7A7468;
  --line: rgba(26,26,26,0.1);
  --line-light: rgba(255,255,255,0.12);
  --primary: #C19A5B;
  --secondary: #F5F0E8;
  --accent: #1B3A5C;
  --nav-height: 72px;
  --radius: 2px;
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
  --transition: 300ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { background: var(--bg); color: var(--text); font-family: 'Lato', sans-serif; font-weight: 300; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* BANDEAU */
.bandeau-promo { background: var(--marine); color: #fff; text-align: center; padding: 10px 40px 10px 20px; font-size: 14px; font-weight: 400; position: fixed; top: 0; left: 0; right: 0; z-index: 200; }
.bandeau-close { position: absolute; right: 12px; 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; z-index: 100;
  height: var(--nav-height); padding: 0 56px;
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled { background: var(--marine-dark); box-shadow: 0 2px 16px rgba(0,0,0,0.2); }
.bandeau-promo ~ .nav { top: 40px; }
.nav-container { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; font-style: italic; color: #fff; letter-spacing: 0.06em; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; }
.nav-logo-initiale { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--or); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-family: 'Lato', sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--or); }
.nav-toggle { display: none; flex-direction: column; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: #fff; margin: 5px 0; }

/* BTN CTA */
.btn-cta {
  display: inline-block; background: transparent; color: var(--or);
  border: 1px solid var(--or); padding: 13px 40px;
  font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  transition: all 0.25s; cursor: pointer; border-radius: 0;
  text-decoration: none; white-space: nowrap;
}
.btn-cta:hover { background: var(--or); color: #fff; }
.btn-cta-large { font-size: 0.8rem; padding: 18px 48px; margin-top: 24px; }
.section-terracotta .btn-cta { border-color: #fff; color: #fff; }
.section-terracotta .btn-cta:hover { background: #fff; color: var(--marine); }

/* HERO HOTEL — photo plein ecran */
.hero-hotel {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--marine-dark);
}
.hero-hotel-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero-hotel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero-hotel-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 32px; max-width: 760px;
}
.hero-hotel-label {
  font-family: 'Lato', sans-serif; font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--or);
  display: block; margin-bottom: 20px;
}
.hero-hotel-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 400; font-style: italic;
  color: #fff; line-height: 1.05; margin-bottom: 20px;
}
.hero-hotel-content p {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.82);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.7;
}

/* A PROPOS HOTEL */
.apropos-hotel {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; min-width: 0;
}
.apropos-hotel-text { min-width: 0; }
.apropos-hotel-tag {
  font-family: 'Lato', sans-serif; font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.45em; text-transform: uppercase; color: var(--or);
  display: block; margin-bottom: 16px;
}
.apropos-hotel-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; font-style: italic;
  color: var(--text); margin-bottom: 20px; min-width: 0;
}
.apropos-hotel-text p {
  font-family: 'Lato', sans-serif; font-size: 0.95rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.85; margin-bottom: 32px; min-width: 0;
}
.apropos-hotel-img { overflow: hidden; min-width: 0; }
.apropos-hotel-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-beige { background: var(--beige); }
.section-dark { background: var(--marine); color: #fff; }
.section-terracotta { background: var(--marine-dark); color: #fff; }
.section-claire { background: var(--beige-off); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.container-narrow { max-width: 700px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; font-style: italic;
  color: var(--marine); margin-bottom: 48px; text-align: center;
}
.section-beige .section-title { color: var(--marine); }
.section-dark .section-title { color: var(--or); }
.section-terracotta .section-title { color: #fff; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; font-size: 15px; font-weight: 300; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }
.section-terracotta .section-subtitle { color: rgba(255,255,255,0.7); }

/* CONTACT PHONE */
.contact-phone { margin: 24px 0 8px; }
.phone-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; font-style: italic; color: #fff; text-decoration: none; display: inline-block; }
.section-terracotta .phone-number { color: var(--or); }

/* TABS (catalogue) */
.tabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.tab-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); padding: 12px 24px;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover { color: var(--marine); border-bottom-color: var(--or); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.menu-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.menu-tab { padding: 10px 24px; background: transparent; color: var(--text-muted); border: 1px solid var(--line); border-radius: 0; font-family: 'Lato', sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all var(--transition); }
.menu-tab:hover { border-color: var(--marine); color: var(--marine); }
.menu-tab.active { background: var(--marine); border-color: var(--marine); color: #fff; }
.menu-cat { display: none; }
.menu-cat.active { display: block; }
.menu-grid { max-width: 700px; margin: 0 auto; }
.menu-item { display: flex; align-items: flex-start; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item-info { min-width: 0; }
.menu-item-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; font-style: italic; margin-bottom: 4px; }
.menu-item-info p { font-size: 0.82rem; color: var(--text-muted); min-width: 0; }
.menu-item-prix { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--or); font-weight: 400; white-space: nowrap; margin-left: 16px; }

/* PRODUITS */
.produit-item { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); gap: 16px; }
.produit-nom { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text); }
.produit-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; min-width: 0; }
.produit-prix { font-size: 0.85rem; color: var(--or); white-space: nowrap; flex-shrink: 0; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-text h2 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2rem; color: var(--marine); margin-bottom: 12px; min-width: 0; }
.split-text p { color: var(--text-muted); line-height: 1.8; min-width: 0; }
.split-image img { width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* HORAIRES */
.horaires-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.horaires-table tr { border-bottom: 1px solid var(--line); }
.horaires-table td { padding: 10px 0; font-size: 0.9rem; color: var(--text-muted); }
.horaires-table .jour { color: var(--text); font-weight: 400; width: 120px; }
.horaires-table tr.ferme td { opacity: 0.4; }
.ferme .heures { font-style: italic; }
.coordonnees { margin-top: 20px; }
.coord-item { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.coord-item a { color: var(--marine); }
.map-container iframe { display: block; width: 100%; height: 100%; min-height: 300px; border: 0; border-radius: var(--radius); }
.placeholder-img { background: var(--beige); display: flex; align-items: center; justify-content: center; min-height: 200px; border: 1px solid var(--line); border-radius: var(--radius); }
.placeholder-img span { color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em; }

/* FOOTER */
.footer { background: var(--marine-dark); color: rgba(255,255,255,0.5); padding: 48px 0 24px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: #fff; display: block; margin-bottom: 12px; }
.footer-address { margin-bottom: 8px; }
.footer h4 { color: rgba(255,255,255,0.5); margin-bottom: 12px; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; font-family: 'Lato', sans-serif; font-weight: 400; }
.footer a { color: rgba(255,255,255,0.5); }
.footer a:hover { color: var(--or); opacity: 1; }
.footer p { margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; }
.footer-credit { color: rgba(255,255,255,0.2); }
.footer-credit a { color: rgba(255,255,255,0.2); }

/* RESA FORM */
.resa-back { background: none; border: none; color: var(--or); cursor: pointer; font-size: 0.9rem; margin-bottom: 16px; padding: 0; text-decoration: underline; }
.resa-form .form-group { margin-bottom: 16px; }
.resa-form label { display: block; font-weight: 400; margin-bottom: 6px; font-size: 0.92rem; }
.resa-form input, .resa-form select { width: 100%; padding: 10px 14px; border: 1px solid var(--line); border-radius: 0; font-size: 1rem; box-sizing: border-box; font-family: inherit; background: #fff; color: var(--text); }
.resa-form input:focus, .resa-form select:focus { outline: none; border-color: var(--marine); }
.form-error { color: #c0392b; font-size: 0.88rem; margin-bottom: 12px; padding: 8px 12px; background: rgba(192,57,43,0.08); border-radius: 0; }
.resa-success { text-align: center; padding: 40px 0; }
.resa-success-icon { font-size: 3.5rem; color: var(--or); 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 rgba(255,255,255,0.25); color: rgba(255,255,255,0.6); border-radius: 0; padding: 3px 7px; font-size: 0.72rem; font-weight: 300; cursor: pointer; letter-spacing: 0.1em; transition: all 0.2s; line-height: 1.4; }
.lang-btn:hover { background: rgba(255,255,255,0.1); }
.lang-btn.active { background: var(--or); border-color: var(--or); 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.25); z-index: 90; transition: transform var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); opacity: 1; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--marine-dark); flex-direction: column; align-items: center;
    gap: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 300ms ease;
  }
  .nav-links.open { display: flex; max-height: 400px; }
  #nav-links.open { display: flex; max-height: 400px; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 20px; }
  .hero-hotel-content h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-hotel-content p { font-size: 0.95rem; }
  .apropos-hotel { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split-image { order: -1; }
  .container { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-hotel-content h1 { font-size: 2.4rem; }
}
