/* =====================================================
   CORE / BASE
   Do not touch unless you REALLY know why
===================================================== */

/* ---------- VARIABLES ---------- */

:root {
  /* Colors */
  /*
  --bg-main: #f7f8fa;
  --bg-card: #ffffff;

  --text-main: #111111;
  --text-soft: #666666;
  --text-muted: #999999;

  --accent: #ff8a65;
  --accent-soft: #ffd1c1;
  */
  
 --bg-main: #f6f3ee;       /* crème chaud */
--bg-card: #ffffff;

--text-main: #2b241c;    /* brun profond */
--text-soft: #7a6e63;    /* brun chaud doux */

--accent: #e07a5f;       /* terracotta / sunset féminin */
--accent-soft: #f4c6b8;

--signature-color: #e7841c; 

  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Space Grotesk', 'Inter', sans-serif;
  
  /* Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-round: 999px;

  /* Shadow */
  --shadow-soft: 0 12px 30px rgba(0,0,0,0.08);

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 80px;

  /* Layout */
  --max-width: 1200px;
}

/* ---------- RESET ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /*
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  */
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  font-family: var(--font-main);
}

/* ---------- ELEMENTS ---------- */

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

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

/* ---------- TYPO ---------- */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

/* ---------- LAYOUT ---------- */

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

.section {
  margin: var(--space-xl) auto;
}

/* ---------- UTILITIES ---------- */

.hidden {
  display: none !important;
}

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

.text-soft {
  color: var(--text-soft);
}

.text-muted {
  color: var(--text-muted);
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- RESPONSIVE BASE ---------- */

@media (max-width: 768px) {
  .section {
    margin: var(--space-lg) auto;
  }
}
/* CSS Document */

