/* =========================================================
   BASE.CSS — Fondations : reset, variables, typographie
   Ne contient AUCUNE mise en page de section.
   Modifie les couleurs/polices ici, ça se répercute partout.
   ========================================================= */

:root {
  /* --- Charte graphique JAMOT PHOTOGRAPHY --- */
  --color-navy: #141B2D;      /* fond sombre, textes principaux */
  --color-navy-light: #1f2937;
  --color-blue: #006DB4;      /* liens, accents secondaires */
  --color-orange: #FFAA1F;    /* boutons d'action (CTA) uniquement */
  --color-orange-dark: #e0941a;
  --color-cream: #F5F0EB;     /* fond clair / ivoire */
  --color-white: #FFFFFF;
  --color-text: #2b2f36;
  --color-text-muted: #6b7280;
  --color-border: #e4ded4;

  /* --- Typographie --- */
  --font-main: 'Montserrat', 'Segoe UI', Arial, sans-serif;

  /* --- Rythme / espacements --- */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* --- Structure --- */
  --container-width: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(20, 27, 45, 0.08);
  --shadow-card: 0 14px 34px rgba(20, 27, 45, 0.18);
  --transition: 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 var(--space-sm); }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--cream { background: var(--color-cream); }
.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.section--navy h2, .section--navy h3 { color: var(--color-white); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-xs);
}

.text-center { text-align: center; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 780px) {
  .section { padding: var(--space-xl) 0; }
}
