/* ============================================================
   STYLE.CSS — Main shared stylesheet for La Maison Rouge
   Used by ALL pages. Import this first on every page.
   Theme: Warm luxury dark — deep charcoal + gold + crimson
   ============================================================ */

/* ---------- GOOGLE FONTS — Import decorative & body fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Lato:wght@300;400;700&display=swap');

/* ---------- CSS VARIABLES — Change these to retheme the whole site ---------- */
:root {
  --gold:       #c9a84c;      /* Primary accent — warm gold */
  --gold-light: #e8c97a;      /* Lighter gold for hover states */
  --crimson:    #8b1a1a;      /* Deep red — secondary accent */
  --charcoal:   #1a1a1a;      /* Near black background */
  --dark:       #111111;      /* True dark for deepest sections */
  --surface:    #242424;      /* Card / elevated surfaces */
  --surface2:   #2e2e2e;      /* Slightly lighter surface */
  --text:       #f0e6d3;      /* Warm off-white text */
  --text-muted: #9e8e78;      /* Muted warm gray text */
  --border:     rgba(201,168,76,0.2); /* Gold tinted border */
  --shadow:     0 8px 32px rgba(0,0,0,0.5);
  --radius:     4px;
  --transition: all 0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;  /* Headings */
  --font-body:    'Lato', 'Helvetica Neue', sans-serif; /* Body text */
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--charcoal);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 90px 0; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.8;
}
/* Gold ornament divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 36px;
}
.ornament.center { justify-content: center; }
.ornament-line { flex: 1; max-width: 60px; height: 1px; background: var(--border); }
.ornament-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(240,230,211,0.4);
  color: var(--text);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- NAVIGATION ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 28px;
}
/* Transparent at top */
header.scrolled {
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
nav {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.nav-logo .logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .btn-reserve {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  margin-left: 8px;
  font-weight: 700;
}
.nav-links .btn-reserve:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Deep layered background using CSS gradients — no image needed */
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.10) 0%, transparent 55%),
    linear-gradient(160deg, #1a0a00 0%, #111111 40%, #1a1208 100%);
}
/* Animated grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 4px
    );
  pointer-events: none;
}
/* Decorative circle */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 8px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint::after {
  content: '↓';
  font-size: 1.2rem;
  color: var(--gold);
}

/* ---------- ABOUT / STORY ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Visual panel (replaces a photo) */
.story-visual {
  position: relative;
}
.story-visual-main {
  background: linear-gradient(145deg, #2a1a0a, #1a1008);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  text-align: center;
  gap: 20px;
}
.story-visual-main .rest-icon { font-size: 5rem; }
.story-visual-main h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-style: italic;
}
.story-visual-main p { color: var(--text-muted); font-size: 0.9rem; }
/* Floating badge */
.story-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--crimson);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.story-badge strong { font-size: 1.6rem; font-weight: 900; color: var(--gold); line-height: 1; }
.story-badge span { font-size: 0.62rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.story-text p { color: var(--text-muted); margin-bottom: 18px; font-size: 0.98rem; }
.story-text p:first-of-type {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.6;
}
/* Three pillars */
.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.pillar:hover { border-color: var(--gold); transform: translateY(-4px); }
.pillar .p-icon { font-size: 1.8rem; margin-bottom: 10px; }
.pillar h4 { font-family: var(--font-display); color: var(--gold); font-size: 0.95rem; margin-bottom: 6px; }
.pillar p { color: var(--text-muted); font-size: 0.8rem; }

/* ---------- SPECIALITIES ---------- */
.specialities-section { background: var(--dark); }
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.speciality-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.speciality-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
/* Visual top panel (replaces dish photo) */
.spec-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.spec-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--surface) 100%);
}
.bg-1 { background: linear-gradient(135deg, #2a0a0a, #1a0808); }
.bg-2 { background: linear-gradient(135deg, #0a1a0a, #081208); }
.bg-3 { background: linear-gradient(135deg, #1a150a, #120e06); }
.bg-4 { background: linear-gradient(135deg, #0a0a1a, #080812); }
.spec-body { padding: 24px; }
.spec-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.spec-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 8px;
}
.spec-body p { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 16px; }
.spec-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* ---------- AMBIENCE ---------- */
.ambience-section { background: var(--charcoal); }
.ambience-header { text-align: center; margin-bottom: 56px; }
.ambience-header .section-desc { margin: 0 auto; }
.ambience-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
/* Each ambience panel — visually rich without images */
.amb-panel {
  border-radius: 2px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.amb-panel:hover { border-color: var(--gold); }
.amb-panel.large { grid-row: span 2; }
.amb-panel-inner {
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
/* Gradient "faux photo" backgrounds for each panel */
.amb-dining {
  background: linear-gradient(145deg, #1a0808 0%, #2a1208 50%, #1a1008 100%);
  min-height: 420px !important;
}
.amb-bar    { background: linear-gradient(145deg, #0a0a14 0%, #1a0e1a 100%); }
.amb-garden { background: linear-gradient(145deg, #081208 0%, #0a1a0a 100%); }
/* Large decorative emoji in background */
.amb-panel-inner .amb-bg-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  opacity: 0.07;
  pointer-events: none;
}
.amb-panel-inner .amb-tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.amb-panel-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 8px;
}
.amb-panel-inner p { color: var(--text-muted); font-size: 0.85rem; max-width: 300px; }
/* Capacity badges */
.amb-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.amb-meta span {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 2px;
}

/* ---------- RESERVATION BANNER ---------- */
.reservation-banner {
  background:
    linear-gradient(135deg, rgba(139,26,26,0.5), rgba(26,26,26,0.9)),
    linear-gradient(to right, #1a0808, #2a1208, #1a0808);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 24px;
  text-align: center;
}
.reservation-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 14px;
}
.reservation-banner h2 em { color: var(--gold); font-style: italic; }
.reservation-banner p { color: var(--text-muted); margin-bottom: 36px; font-size: 1rem; }
/* Reservation form inline */
.reserve-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto 24px;
}
.reserve-form input,
.reserve-form select {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 18px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition);
  flex: 1;
  min-width: 160px;
}
.reserve-form input::placeholder { color: var(--text-muted); }
.reserve-form select option { background: var(--charcoal); color: var(--text); }
.reserve-form input:focus,
.reserve-form select:focus { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.reserve-note { color: var(--text-muted); font-size: 0.8rem; }
.reserve-note strong { color: var(--gold); }

/* ---------- CONTACT STRIP ---------- */
.contact-strip { background: var(--dark); padding: 60px 0; }
.contact-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.contact-block { text-align: center; }
.contact-block .c-icon { font-size: 1.8rem; margin-bottom: 12px; }
.contact-block h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-block p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ---------- FOOTER ---------- */
footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 56px 28px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .fb-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 4px;
}
.footer-brand .fb-sub {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.87rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 8px; }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: #444;
}
.footer-bottom a { color: var(--gold); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .story-grid,
  .ambience-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .ambience-grid { grid-template-rows: auto; }
  .amb-panel.large { grid-row: span 1; }
  .amb-dining { min-height: 300px !important; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: rgba(17,17,17,0.98); padding: 24px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 64px 0; }
  .story-pillars { grid-template-columns: 1fr; }
  .reserve-form { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
