/* =========================
   LA GRANDE GUEULE
   Feuille de style principale
   Inspirée de la carte de visite :
   papier crème, encre noire, rose, orange, turquoise
========================= */


/* =========================
   RESET SIMPLE
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3e2c7;
  color: #15110d;
  line-height: 1.6;
}

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

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


/* =========================
   COULEURS / VARIABLES
========================= */

:root {
  --couleur-fond: #f3e2c7;        /* papier crème */
  --couleur-fond-clair: #fff4dc;  /* papier plus clair */
  --couleur-texte: #15110d;       /* noir encre */
  --couleur-sombre: #111111;      /* noir profond */

  --couleur-rose: #e72b8a;        /* fuchsia graffiti */
  --couleur-orange: #f28c1b;      /* orange vif */
  --couleur-jaune: #f6c835;       /* jaune peinture */
  --couleur-turquoise: #22a99a;   /* turquoise / vert d’eau */
  --couleur-encre: #050505;

  --couleur-accent: var(--couleur-rose);
  --couleur-accent-2: var(--couleur-orange);

  --largeur-contenu: 1100px;
}


/* =========================
   TYPOGRAPHIE GÉNÉRALE
========================= */

h1,
h2,
h3 {
  font-weight: 900;
  line-height: 0.95;
}

p {
  margin-bottom: 1rem;
}

strong {
  font-weight: 900;
}


/* =========================
   HEADER / HERO
========================= */

.hero {
  min-height: 100vh;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image:
    linear-gradient(
      rgba(243, 226, 199, 0.10),
      rgba(243, 226, 199, 0.18)
    ),
    url("../images/LaGrandeGueule_Background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-content {
  width: 100%;
  max-width: var(--largeur-contenu);
  text-align: center;
  position: relative;
  z-index: 1;

  padding: 40px 28px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  color: var(--couleur-encre);
  text-shadow:
    3px 3px 0 var(--couleur-jaune),
    6px 6px 0 rgba(231, 43, 138, 0.55);
}

.hero .subtitle {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 900;
  max-width: 850px;
  margin: 0 auto 28px;
  color: var(--couleur-encre);
}

.hero .intro {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  background: rgba(255, 244, 220, 0.72);
  border: 2px solid rgba(5, 5, 5, 0.85);
  padding: 18px 22px;
  box-shadow: 8px 8px 0 rgba(5, 5, 5, 0.12);
}


/* =========================
   BOUTONS
========================= */

.button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--couleur-rose);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  border: 3px solid var(--couleur-encre);
  box-shadow: 6px 6px 0 var(--couleur-encre);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--couleur-encre);
  background: var(--couleur-orange);
}





/* =========================
   SECTIONS
========================= */

section {
  padding: 90px 24px;
}

.container {
  max-width: var(--largeur-contenu);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--couleur-encre);
  text-shadow:
    3px 3px 0 var(--couleur-jaune),
    6px 6px 0 rgba(231, 43, 138, 0.45);
}

.text-large {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  max-width: 850px;
}


/* =========================
   SECTION CLAIRE
========================= */

section:not(.dark-section):not(.accent-section) {
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 43, 138, 0.10), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(34, 169, 154, 0.12), transparent 24%),
    var(--couleur-fond);
}


/* =========================
   SECTION SOMBRE
========================= */

.dark-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(231, 43, 138, 0.35), transparent 25%),
    radial-gradient(circle at 90% 70%, rgba(242, 140, 27, 0.28), transparent 25%),
    var(--couleur-sombre);
  color: white;
}

.dark-section .section-title {
  color: white;
  text-shadow:
    3px 3px 0 var(--couleur-rose),
    6px 6px 0 rgba(246, 200, 53, 0.55);
}

.dark-section .text-large {
  color: #fff4dc;
}


/* =========================
   SECTION ACCENT
========================= */

.accent-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(246, 200, 53, 0.45), transparent 25%),
    radial-gradient(circle at 80% 75%, rgba(34, 169, 154, 0.35), transparent 28%),
    var(--couleur-rose);
  color: white;
}

.accent-section .section-title {
  color: white;
  text-shadow:
    3px 3px 0 var(--couleur-encre),
    6px 6px 0 rgba(242, 140, 27, 0.7);
}

.accent-section .text-large {
  color: #fff4dc;
}


/* =========================
   NEWSLETTER / FORMULAIRE
========================= */

.newsletter-box {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-box input {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border: 3px solid var(--couleur-encre);
  background: var(--couleur-fond-clair);
  color: var(--couleur-texte);
  font-size: 1rem;
  box-shadow: 5px 5px 0 rgba(5, 5, 5, 0.25);
}

.newsletter-box input::placeholder {
  color: rgba(21, 17, 13, 0.65);
}

.newsletter-box button {
  padding: 14px 24px;
  border: 3px solid var(--couleur-encre);
  background: var(--couleur-jaune);
  color: var(--couleur-encre);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--couleur-encre);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.newsletter-box button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--couleur-encre);
  background: var(--couleur-orange);
}


/* =========================
   CONTACT
========================= */

#contact {
  background:
    radial-gradient(circle at 15% 75%, rgba(242, 140, 27, 0.20), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(231, 43, 138, 0.16), transparent 28%),
    var(--couleur-fond-clair);
}


/* =========================
   FOOTER
========================= */

footer {
  padding: 32px 24px;
  background: var(--couleur-sombre);
  color: #fff4dc;
  text-align: center;
  font-size: 0.9rem;
  border-top: 6px solid var(--couleur-rose);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 700px) {
  .hero {
    min-height: 100svh;
    padding: 28px 16px;
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    padding: 28px 18px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;

  }

  .hero h1 {
    font-size: clamp(2.4rem, 16vw, 4.4rem);
    letter-spacing: -0.07em;
  }

  .hero .subtitle {
    font-size: 1.35rem;
  }

  .hero .intro {
    font-size: 1rem;
    margin-bottom: 28px;
  }
}

  section {
    padding: 64px 18px;
  }

  .logo {
    max-width: 320px;
  }

  .hero .intro {
    padding: 16px;
  }

  .newsletter-box {
    display: block;
  }

  .newsletter-box input,
  .newsletter-box button {
    width: 100%;
  }

  .newsletter-box button {
    margin-top: 12px;
  }
}