/* ===== EVENT ME — Shared Design System ===== */
:root {
  --cream: #F5EFE6;
  --brown: #3D1F0F;
  --brown-mid: #6B3A22;
  --brown-light: #A0673A;
  --gold: #C9935A;
  --gold-light: #E8C99A;
  --white: #FDFAF6;
  --text: #2A1505;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ===== NAV ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 4rem; background: transparent; transition: background 0.4s, backdrop-filter 0.4s; }
nav.scrolled { background: rgba(245,239,230,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(161,103,58,0.15); }
nav.nav-solid { background: rgba(245,239,230,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(161,103,58,0.15); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--brown); letter-spacing: 0.04em; text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.85rem; font-weight: 400; color: var(--brown-mid); letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--brown) !important; color: var(--cream) !important; padding: 0.55rem 1.4rem !important; border-radius: 50px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--brown) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.3rem; flex-direction: column; gap: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--brown); transition: all 0.3s; border-radius: 2px; }

/* ===== FOOTER ===== */
footer { background: var(--brown); color: rgba(245,239,230,0.6); padding: 3rem 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--cream); margin-bottom: 0.3rem; }
.footer-logo span { color: var(--gold); }
.footer-text { font-size: 0.8rem; color: rgba(245,239,230,0.55); }
.footer-copy { margin-top: 0.5rem; font-size: 0.72rem; color: rgba(245,239,230,0.4); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a { color: rgba(245,239,230,0.6); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--gold); color: var(--brown); padding: 0.85rem 2.2rem; border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; transition: all 0.25s; border: none; cursor: pointer; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(61,31,15,0.25); color: var(--brown); padding: 0.85rem 2.2rem; border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 300; letter-spacing: 0.05em; transition: all 0.25s; cursor: pointer; display: inline-block; background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light { border: 1px solid rgba(245,239,230,0.35); color: var(--cream); padding: 0.85rem 2.2rem; border-radius: 50px; text-decoration: none; font-size: 0.85rem; font-weight: 300; transition: all 0.25s; cursor: pointer; display: inline-block; background: transparent; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 0.5rem 1.2rem !important; font-size: 0.78rem !important; }

/* ===== SECTION ===== */
section { padding: 7rem 4rem; }
.section-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; color: var(--brown); }
.section-title em { font-style: italic; color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { padding: 8rem 4rem 4rem; background: var(--brown); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 60% 40%, #6B3A2266 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; color: var(--cream); line-height: 1.1; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-subtitle { font-size: 0.95rem; color: rgba(245,239,230,0.65); margin-top: 1rem; font-weight: 300; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: var(--brown-light); margin-bottom: 2rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--brown-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== EQUIPMENT CARD ===== */
.eq-card { background: var(--white); border-radius: 16px; border: 1px solid rgba(161,103,58,0.12); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; color: inherit; display: block; }
.eq-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(61,31,15,0.12); }
.eq-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.eq-card-body { padding: 1.5rem; }
.eq-card-type { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.eq-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--brown); margin-bottom: 0.5rem; }
.eq-card-desc { font-size: 0.8rem; color: var(--brown-mid); line-height: 1.6; margin-bottom: 1rem; }
.eq-card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); }
.eq-card-price small { font-size: 0.75rem; color: var(--brown-light); font-family: 'DM Sans', sans-serif; }
.eq-villes { display: flex; gap: 0.4rem; margin-top: 0.5rem; flex-wrap: wrap; }
.eq-ville-badge { font-size: 0.6rem; background: rgba(201,147,90,0.12); color: var(--brown-mid); padding: 0.15rem 0.5rem; border-radius: 50px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--brown); color: var(--cream); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(201,147,90,0.2); }
.cookie-banner p { font-size: 0.82rem; color: rgba(245,239,230,0.8); }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner button { background: var(--gold); color: var(--brown); border: none; padding: 0.5rem 1.5rem; border-radius: 50px; cursor: pointer; font-size: 0.82rem; font-weight: 500; white-space: nowrap; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1.2rem; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--brown); text-align: center; padding: 5rem 4rem; }
.cta-section .section-title { color: var(--cream); }
.cta-section .section-title em { color: var(--gold); }
.cta-section p { margin: 1rem auto; max-width: 480px; color: rgba(245,239,230,0.65); font-size: 0.9rem; }
.cta-actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  section { padding: 5rem 2rem; }
  .page-hero { padding: 7rem 2rem 3rem; }
  footer { padding: 2rem; }
  .cta-section { padding: 4rem 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(245,239,230,0.97); backdrop-filter: blur(16px); padding: 1.5rem 2rem; border-bottom: 1px solid rgba(161,103,58,0.15); flex-direction: column; gap: 1rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .cookie-banner { flex-direction: column; text-align: center; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  nav { padding: 1rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 6rem 1.5rem 2.5rem; }
}
