/* ====================
   Font Face – Local Hosting
   ==================== */

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ====================
   Root Variables
   ==================== */
:root {
  --brand-orange: #f2a900;
  --text-color: #222;
  --bg-light: #fbf6f0;
  --font-base: 'Urbanist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-script: 'santelia-script', sans-serif;
  --p-size-desktop: 18px;
  --p-size-mobile: 16px;
  --p-line: 1.6;
  --p-measure: 60ch; /* line length target */
}


/* ====================
   Reset & Base Styles
   ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-base);
  font-size: clamp(15px, 1.5vw, 18px);
  scroll-behavior: smooth;
  background: var(--bg-light);
  color: var(--text-color);
}

body {
  padding-top: 70px;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.menu-container {
  padding: 32px;
}

/* ====================
   Utility Classes
   ==================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 0;
  width: auto;
  height: auto;
  padding: 1rem;
  background: #000;
  color: #fff;
  z-index: 1001;
}

/* ====================
   Typography Utility
   ==================== */

h2 {
  font-family: var(--font-base);
  font-size: clamp(2.7rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-color);
  margin: 0 0 1.2rem;
}

h2.script-title {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4vw, 1.9rem);
  font-weight: 700; /* ou 900 pour un effet plus marqué */
  line-height: 1.2;
  color: var(--brand-orange);
  margin: 0rem;
}

h2.script-title-white {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4vw, 1.9rem);
  font-weight: 700; /* ou 900 pour un effet plus marqué */
  line-height: 1.2;
  color: #fff;
  margin: 0rem;
}

h3 {
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 20px;
  color: var(--text-color);
  margin: 0rem;
}

h3.script-button {
  font-family: var(--font-script);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0rem;
}

p {
  font-family: var(--font-base);
  font-weight: 600;
  font-size: var(--p-size-desktop);
  line-height: var(--p-line);
  color: var(--text-color);
  margin: 0;
}

.prose{
  max-width: var(--p-measure);
}

.prose p{
  max-width: 100%;
}

/* Optional: nicer rhythm when there are multiple paragraphs */
.prose p + p{
  margin-top: 1rem;
}


/* ====================
   Responsive helpers
   ==================== */
img, svg { max-width: 100%; height: auto; }

@media (max-width: 768px) {
  /* your header becomes taller on mobile, so avoid overlap */
  body { padding-top: 100px; }
	
  p{ font-size: var(--p-size-mobile); }
}


/* ==========================================
   Prose — tighter line length on mobile
   ========================================== */
@media (max-width: 767px){

  .prose{
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
  }

}

