/* ========================================================================
   Styles partagés entre index.html et parcours.html
   Les styles spécifiques à chaque page restent dans leur <style> inline.
   ======================================================================== */

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* VARIABLES */
:root {
  --bg: #F5F0EB;
  --bg-alt: #FFFCF8;
  --text: #2C2825;
  --text-light: #5F594F;
  --accent: #B8A08A;
  --accent-dark: #9A8570;
  --border: #E0D8D0;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* TYPOGRAPHIE COMMUNE */
.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
  font-weight: 400;
}

/* LOGO NAV */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}

/* BOUTONS */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 40, 37, 0.2);
}

/* FOOTER */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

footer p {
  font-size: 0.78rem;
  color: #3F3A33;
  letter-spacing: 0.03em;
}

footer a {
  color: #3F3A33;
  text-decoration: underline;
  font-size: 0.78rem;
}
