body {
  margin: 0;
  background-color: #F8F1DF;
  color: #0c0a09;
  font-family: 'Inter', Arial, sans-serif;
  position: relative;
}

/* FOND GUGUSSES */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("images/gugusses.png");
  background-size: 700px auto;
  background-repeat: repeat;
  background-position: top left;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

/* MENU */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: rgba(248, 241, 223, 0.82);
  backdrop-filter: blur(8px);
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: #C94A3A;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

nav a {
  color: #1E1A17;
  text-decoration: none;
  font-size: 15px;
}

nav a:hover {
  color: #C94A3A;
}

/* INTRO */

.intro {
  min-height: 85vh;
  text-align: center;
  padding: 90px 24px 70px;
  position: relative;
  overflow: hidden;
}

h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(80px, 15vw, 180px);
  line-height: 0.85;
  color: #C94A3A;
}

.baseline {
  margin: 26px 0 0;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5F8D4E;
}

.sous-titre {
  max-width: 700px;
  margin: 28px auto 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  color: #3B6EA8;
}

.descriptif-organique {
  max-width: 760px;
  margin: 52px auto 0;
  position: relative;
  padding: 20px;
}

.descriptif-organique::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #E8A0BF;
  border-radius: 58% 42% 63% 37%;
  top: -35px;
  left: -45px;
  opacity: 0.45;
  z-index: -1;
}

.descriptif-organique::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  background: #E8893A;
  border-radius: 43% 57% 36% 64%;
  bottom: -35px;
  right: -45px;
  opacity: 0.55;
  z-index: -1;
}

.descriptif-organique p {
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
  color: #1E1A17;
}

/* TITRES DE SECTIONS */

.categories-section h2,
.ateliers-section h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1;
  margin: 0 0 48px;
  color: #C94A3A;
}

/* CATÉGORIES */

.categories-section {
  padding: 90px 24px;
  background: rgba(248, 241, 223, 0.72);
}
.categories-grid {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;

  align-items: stretch;
  justify-items: stretch;
}

.categorie-card {
  width: 100%;
  min-height: 230px;
  padding: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  text-decoration: none;
  color: #1E1A17;
  cursor: pointer;

  box-sizing: border-box;
  overflow: hidden;

  border-radius: 999px;

  transition: transform 0.25s ease, filter 0.25s ease;
}

.categorie-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  filter: saturate(1.15);
}

.categorie-card h3 {
  margin: 0;
  max-width: 140px;

  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.categorie-card:nth-child(1) {
  background: #E8A0BF;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
}

.categorie-card:nth-child(2) {
  background: #3B6EA8;
  color: white;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
}

.categorie-card:nth-child(3) {
  background: #E8893A;
  border-radius: 55% 45% 45% 55% / 50% 55% 45% 50%;
}

.categorie-card:nth-child(4) {
  background: #5F8D4E;
  color: white;
  border-radius: 50% 50% 60% 40% / 45% 55% 45% 55%;
}

.categorie-card:nth-child(5) {
  background: #F6D85F;
  border-radius: 45% 55% 55% 45% / 50% 45% 55% 50%;
}

/* ATELIERS */

.ateliers-section {
  padding: 50px 24px;
  background: rgba(232, 160, 191, 0.86);
}

.ateliers-texte {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ateliers-texte p {
  font-size: 22px;
  line-height: 1.55;
  color: #1E1A17;
}

.bouton-contact {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #1E1A17;
  color: #F8F1DF;
  text-decoration: none;
  font-size: 17px;
}

.bouton-contact:hover {
  background: #5F8D4E;
}
/* PAGES TANIÈRES */

.page-taniere {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px 130px;
}

.entete-taniere {
  text-align: center;
  margin-bottom: 80px;
}

.entete-taniere h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(72px, 12vw, 150px);
  line-height: 0.9;
  color: #C94A3A;
}

.intro-page {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 28px 34px;

  font-size: 22px;
  line-height: 1.6;
  color: #1E1A17;
  text-align: center;

  position: relative;
  z-index: 1;
}

.intro-page::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 180px;
  background: rgba(232, 160, 191, 0.30);
  filter: blur(40px);
  border-radius: 50%;
  top: -20px;
  left: -40px;
  z-index: -1;
}

.intro-page::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 160px;
  background: rgba(246, 216, 95, 0.25);
  filter: blur(40px);
  border-radius: 50%;
  bottom: -20px;
  right: -30px;
  z-index: -1;
}

.grille-taniere {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.bloc-projet {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 34px;
  align-items: center;

  padding: 28px;
  border-radius: 42px;
  background: rgba(248, 241, 223, 0.78);
  backdrop-filter: blur(4px);
}

.bloc-projet img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 34px;
  background: #E8A0BF;
}

.bloc-projet h2 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 46px;
  line-height: 1;
  color: #C94A3A;
}

.bloc-projet p {
  font-size: 19px;
  line-height: 1.55;
  color: #1E1A17;
}
.bloc-projet img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  border-radius: 34px;
}
.type-projet {
  margin: 0 0 12px;
  color: #5F8D4E;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bouton-projet {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1E1A17;
  color: #F8F1DF;
  text-decoration: none;
  font-size: 16px;
}

.bouton-projet:hover {
  background: #C94A3A;
}

/* COULEURS DIFFÉRENTES PAR PAGE */

.page-enquetes .intro-page::before {
  background: rgba(232, 160, 191, 0.34);
}

.page-enquetes .intro-page::after {
  background: rgba(201, 74, 58, 0.18);
}

.page-sons .intro-page::before {
  background: rgba(59, 110, 168, 0.24);
}

.page-sons .intro-page::after {
  background: rgba(246, 216, 95, 0.28);
}

.page-matieres .intro-page::before {
  background: rgba(232, 137, 58, 0.28);
}

.page-matieres .intro-page::after {
  background: rgba(232, 160, 191, 0.30);
}

.page-nature .intro-page::before {
  background: rgba(95, 141, 78, 0.28);
}

.page-nature .intro-page::after {
  background: rgba(246, 216, 95, 0.30);
}

.page-ateliers .intro-page::before {
  background: rgba(246, 216, 95, 0.32);
}

.page-ateliers .intro-page::after {
  background: rgba(232, 160, 191, 0.35);
}

/* MOBILE */

@media (max-width: 800px) {
  .page-taniere {
    padding: 70px 20px 100px;
  }

  .entete-taniere {
    margin-bottom: 55px;
  }

  .bloc-projet {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bloc-projet img {
    height: 220px;
  }

  .bloc-projet h2 {
    font-size: 38px;
  }

  .intro-page,
  .bloc-projet p {
    font-size: 18px;
  }
}
/* PROGRAMME ATELIERS */

.programme-section,
.articles-section {
  margin-top: 90px;
}

.programme-section h2,
.articles-section h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1;
  color: #C94A3A;
  margin: 0 0 50px;
}

.programme-liste {
  display: grid;
  gap: 28px;
}

.evenement-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: stretch;

  padding: 28px;
  border-radius: 44px;
  background: rgba(248, 241, 223, 0.82);
  backdrop-filter: blur(5px);
}

.date-evenement {
  min-height: 150px;
  border-radius: 50%;
  background: #F6D85F;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.date-evenement .jour {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  line-height: 0.9;
  color: #C94A3A;
}

.date-evenement .mois {
  margin-top: 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.evenement-contenu h3,
.article-rencontre h3 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  line-height: 1;
  color: #C94A3A;
}

.evenement-contenu p,
.article-rencontre p,
.intro-articles {
  font-size: 19px;
  line-height: 1.55;
  color: #1E1A17;
}

.intro-articles {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.article-rencontre {
  padding: 30px;
  border-radius: 40px;
  background: rgba(232, 160, 191, 0.72);
}

.article-rencontre:nth-child(2) {
  background: rgba(95, 141, 78, 0.72);
}

.article-rencontre:nth-child(3) {
  background: rgba(59, 110, 168, 0.72);
}

.article-rencontre:nth-child(2),
.article-rencontre:nth-child(3) {
  color: white;
}

.article-rencontre:nth-child(2) p,
.article-rencontre:nth-child(3) p,
.article-rencontre:nth-child(2) h3,
.article-rencontre:nth-child(3) h3 {
  color: white;
}

/* MOBILE PROGRAMME */

@media (max-width: 800px) {
  .evenement-card {
    grid-template-columns: 1fr;
  }

  .date-evenement {
    width: 150px;
    height: 150px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }
}
/* MOBILE — BOUTONS DE LA PAGE D'ACCUEIL */

@media (max-width: 800px) {
  .categories-section {
    padding: 70px 20px 110px;
  }

  .categories-grid {
    max-width: 360px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .categorie-card {
    min-height: 120px;
    width: 100%;
    padding: 22px 28px;

    border-radius: 999px !important;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .categorie-card:hover {
    transform: none;
  }

  .categorie-card h3 {
    font-size: 32px;
    line-height: 0.95;
    max-width: 260px;
  }
}