/* Shared CSS for Les 1Séparables */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --cream: #F5F0E8;
  --dark: #1a1a1a;
  --gold: #B8962E;
  --gold-light: #d4af5a;
  --warm-gray: #6b6157;
  --border: #d9d0c0;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 112.5%; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-weight: 300;
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,150,46,0.3);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: all 0.3s;
}

nav .logo img {
  height: 44px;
  filter: brightness(0) invert(1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav ul li a {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

nav ul li a.btn-reserv {
  background: var(--gold);
  color: #fff;
  padding: 8px 18px;
  border: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
nav ul li a.btn-reserv:hover { background: var(--gold-light); border-bottom-color: transparent; }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  nav ul {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(26,26,26,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
  }
  nav ul.open { display: flex; }
  .burger { display: flex; }
}

/* PAGE HEADER */
.page-header {
  padding: 140px 2rem 80px;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,150,46,0.15) 0%, transparent 60%);
}
.page-header .ornement {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
}

/* SECTION */
.section { padding: 80px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider.left { margin-left: 0; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 2rem 30px;
  font-size: 0.85rem;
}
footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
footer h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
footer p, footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  line-height: 2;
  display: block;
}
footer a:hover { color: var(--gold-light); }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  max-width: 1100px;
  margin: 0 auto;
}
