/* ============================= */
/* RESET GLOBAL                  */
/* ============================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================= */
/* VARIABLES GOTHIC SYSTEM      */
/* ============================= */

:root {
  --bg: #070707;
  --bg2: #0d0d0d;

  --panel: rgba(10, 10, 10, 0.75);

  --blood: #700000;
  --blood-dark: #4a0000;
  --blood-glow: rgba(112, 0, 0, 0.45);

  --text: #d6d6d6;
  --muted: #8a8a8a;

  --border: rgba(112, 0, 0, 0.25);
}

/* ============================= */
/* GLOBAL BASE                  */
/* ============================= */

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  background: radial-gradient(circle at top, #0a0a0a, #000);
  color: var(--text);

  font-family: "Times New Roman", serif;

  overflow-x: hidden;
  padding-top: 80px;

  position: relative;
  z-index: 0;
}

/* ambiance sombre globale */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: radial-gradient(
    circle,
    transparent 35%,
    rgba(0, 0, 0, 0.88)
  );

  pointer-events: none;
  z-index: -1;
}

/* ============================= */
/* BASE TYPO RESET              */
/* ============================= */

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================= */
/* TYPOGRAPHY                  */
/* ============================= */

h1, h2, h3 {
  color: var(--blood);
  letter-spacing: 2px;
  text-shadow: 0 0 12px var(--blood-glow);
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
}

h3 {
  font-size: 1.6rem;
}

p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;

  max-width: 850px;
  margin: 0 auto;
}

/* ============================= */
/* ANIMATIONS                  */
/* ============================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/* HERO / LOGO SYSTEM          */
/* ============================= */

.logotype {
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 30px 0 15px;
}

.title {
  font-size: 2.6rem;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-align: center;
}

/* LOGO (VERSION OPTIMISÉE) */
.logo {
  width: 55px; /* ↓ plus équilibré */
  height: auto;

  filter: drop-shadow(0 0 8px var(--blood-dark));

  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 12px var(--blood-glow));
}

/* ============================= */
/* HERO TEXT                   */
/* ============================= */

.animation-acceuil {
  text-align: center;

  font-size: 2.2rem; /* ↓ plus cohérent avec le reste */
  letter-spacing: 4px;
  text-transform: uppercase;

  color: var(--blood);

  margin: 15px 0 25px;

  text-shadow: 0 0 10px var(--blood-glow);
}

/* ============================= */
/* CONTACT SECTION              */
/* ============================= */

.contact-section {
  padding: 70px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  background: radial-gradient(
    circle at top,
    rgba(60, 0, 0, 0.20),
    transparent 65%
  );
}

/* ============================= */
/* TITRE CONTACT                */
/* ============================= */

.contact-title {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  font-size: 2rem;

  letter-spacing: 2px;

  color: #e6e6e6;

  margin-bottom: 40px;

  text-shadow: 0 0 12px rgba(179,0,0,0.35);
}

/* LOGOS TITRE */
.logo-title {
  width: 24px; /* ↓ réduit */
  opacity: 0.85;
}

/* ============================= */
/* FORMULAIRE PRINCIPAL         */
/* ============================= */

.contact-form {
  width: 100%;
  max-width: 650px; /* ↓ plus équilibré */

  margin: 0 auto;

  padding: 35px;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);

  border-radius: 12px;

  border: 1px solid var(--border);

  box-shadow:
    0 0 18px rgba(0,0,0,0.85),
    0 0 25px rgba(112,0,0,0.12);

  position: relative;
  overflow: hidden;

  animation: fadeUp 0.8s ease;
}

/* ============================= */
/* GLOW SUBTIL                  */
/* ============================= */

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top left,
    rgba(112,0,0,0.08),
    transparent 65%
  );

  pointer-events: none;
}

/* ============================= */
/* FORM GROUP SYSTEM            */
/* ============================= */

.form-group {
  display: flex;
  flex-direction: column;

  margin-bottom: 18px;

  position: relative;
  z-index: 1;
}

.form-group.full {
  width: 100%;
}

/* ============================= */
/* LABELS                      */
/* ============================= */

.form-group label {
  margin-bottom: 6px;

  font-size: 0.9rem;
  letter-spacing: 1px;

  color: #cfcfcf;

  opacity: 0.9;
}

/* ============================= */
/* INPUT BASE SYSTEM           */
/* ============================= */

input,
select,
textarea {
  width: 100%;

  background: #0b0b0b;

  border: 1px solid var(--border);

  padding: 12px 14px;

  color: var(--text);

  border-radius: 6px;

  font-size: 1rem;

  transition: all 0.25s ease;

  box-shadow: inset 0 0 6px rgba(0,0,0,0.6);
}

/* ============================= */
/* FOCUS STATE (CLEAN GLOW)    */
/* ============================= */

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blood);

  box-shadow:
    0 0 10px var(--blood-glow),
    inset 0 0 6px rgba(0,0,0,0.6);

  outline: none;
}

/* ============================= */
/* TEXTAREA                    */
/* ============================= */

textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}

/* ============================= */
/* BUTTON SYSTEM                */
/* ============================= */

button {
  width: 100%;

  padding: 14px;

  font-size: 1rem;
  letter-spacing: 2px;

  color: #fff;

  background: linear-gradient(
    90deg,
    var(--blood-dark),
    var(--blood)
  );

  border: 1px solid var(--blood);

  border-radius: 6px;

  cursor: pointer;

  transition: all 0.25s ease;

  box-shadow: 0 0 14px rgba(112, 0, 0, 0.25);

  position: relative;
}

/* HOVER */
button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 0 20px var(--blood-glow),
    0 0 40px rgba(112, 0, 0, 0.2);
}

/* ACTIVE */
button:active {
  transform: scale(0.98);
}

/* ============================= */
/* NAVIGATION SYSTEM           */
/* ============================= */

.navigation {
  background: #000;
}

/* NAV FIXED BAR */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 14px 18px;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--border);

  box-shadow: 0 0 10px rgba(112, 0, 0, 0.15);
}

/* LIST */
.nav-list {
  display: flex;
  gap: 35px;

  list-style: none;

  margin: 0;
  padding: 0;
}

/* LINKS */
.nav a {
  color: #e5e5e5;
  text-decoration: none;

  font-size: 1rem;
  letter-spacing: 1px;

  transition: all 0.25s ease;

  position: relative;
}

/* HOVER CLEAN */
.nav a:hover {
  color: var(--blood);
  transform: translateY(-1px);
}

/* ============================= */
/* SECTIONS GENERAL            */
/* ============================= */

.presentation,
.presentation--reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  padding: 70px 40px;
  max-width: 1200px;
  margin: 0 auto;

  background: var(--panel);
  backdrop-filter: blur(8px);

  border: 1px solid var(--border);
  border-radius: 12px;

  animation: fadeUp 0.8s ease;
}

/* ============================= */
/* GLOBAL BUTTON SYSTEM        */
/* ============================= */

button,
.btn-product,
.btn-cart,
.btn-buy {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 12px 22px;

  border-radius: 999px;

  cursor: pointer;

  transition: all 0.25s ease;

  font-size: 1rem;
  letter-spacing: 1px;
}

/* STYLE PRINCIPAL BOUTONS */
button {
  background: linear-gradient(
    90deg,
    var(--blood-dark),
    var(--blood)
  );

  border: 1px solid var(--blood);

  color: #fff;

  box-shadow: 0 0 14px rgba(112, 0, 0, 0.2);
}

/* HOVER GLOBAL */
button:hover,
.btn-product:hover,
.btn-cart:hover,
.btn-buy:hover {
  background: var(--blood);
  box-shadow: 0 0 18px var(--blood-glow);
  transform: translateY(-2px);
}

/* ACTIVE */
button:active {
  transform: scale(0.98);
}

/* ============================= */
/* FOOTER                      */
/* ============================= */

.footer {
  background: #000;
  border-top: 1px solid var(--blood);

  padding: 60px 20px;
}

/* CONTAINER FOOTER */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 40px;

  max-width: 1200px;
  margin: 0 auto;
}

/* LINKS FOOTER */
.footer a {
  color: #bbb;
  transition: 0.25s ease;
}

.footer a:hover {
  color: var(--blood);
}

/* ============================= */
/* VITRINE                      */
/* ============================= */

.vitrine {
  padding: 60px 20px;
  background-color: var(--bg2);
  color: var(--text);
  text-align: center;
}

.vitrine-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--blood);
  text-shadow: 0 0 12px var(--blood-glow);
}

.vitrine-intro {
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* TITRES DE SECTIONS */
.section-title {
  margin: 50px 0 20px;
  font-size: 1.6rem;
  color: var(--blood);
  text-shadow: 0 0 10px var(--blood-glow);
}

/* ============================= */
/* PACK PAGE                    */
/* ============================= */

.pack-page {
  text-align: center;
}

.pack-page h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.pack-page h2 {
  margin-top: 40px;
  font-size: 1.4rem;
  border-left: 3px solid var(--blood);
  padding-left: 10px;
  color: var(--text);
}

.pack-page ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================= */
/* GRILLE PACKS                 */
/* ============================= */

.packs-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================= */
/* CARDS PACKS (SYSTEME UNIFIE) */
/* ============================= */

.pack-card {
  display: block;
  text-decoration: none;
  color: inherit;

  background: #111;
  border: 1px solid #222;
  border-radius: 12px;

  padding: 20px;
  width: 260px;

  text-align: left;

  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* glow léger cohérent avec ton thème */
.pack-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(112, 0, 0, 0.15),
    transparent 70%
  );

  opacity: 0;
  transition: 0.3s;
}

.pack-card:hover::before {
  opacity: 1;
}

.pack-card:hover {
  transform: translateY(-5px);
  border-color: var(--blood);
  box-shadow: 0 0 15px var(--blood-glow);
}

.pack-card:active {
  transform: scale(0.98);
}

/* TEXTES */
.pack-card h4 {
  margin-bottom: 10px;
  color: var(--text);
}

.pack-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ============================= */
/* PRICE BOX (VERSION CLEAN)    */
/* ============================= */

.price-box {
  margin: 30px auto;
  padding: 18px;

  background: #111;
  border: 1px solid #222;
  border-radius: 10px;

  text-align: center;
  font-size: 1.2rem;

  color: var(--blood);

  max-width: 400px;

  box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

/* ============================= */
/* PRICE INLINE                */
/* ============================= */

.price {
  display: block;
  margin-top: 10px;

  color: var(--blood);
  font-weight: bold;
}

/* ============================= */
/* PERSONNALISATION (BLOCK SYS) */
/* ============================= */

.custom-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* CARDS UNIFORMISÉES */
.custom-grid div {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;

  padding: 20px;
  width: 260px;

  position: relative;
  overflow: hidden;

  text-align: left;

  transition: 0.3s ease;
}

/* glow cohérent système global */
.custom-grid div::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(112, 0, 0, 0.15),
    transparent 70%
  );

  opacity: 0;
  transition: 0.3s;
}

.custom-grid div:hover::before {
  opacity: 1;
}

.custom-grid div:hover {
  transform: translateY(-5px);
  border-color: var(--blood);
  box-shadow: 0 0 15px var(--blood-glow);
}

/* TITRES */
.custom-grid h4 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.2rem;

  border-bottom: 1px solid #222;
  padding-bottom: 5px;
}

/* TEXTE */
.custom-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* ============================= */
/* BOUTON PRINCIPAL (FIX CLEAN) */
/* ============================= */

.btn-main {
  display: inline-block;

  margin-top: 50px;
  padding: 12px 25px;

  background: var(--blood);
  color: white;

  text-decoration: none;
  border-radius: 8px;

  transition: 0.3s ease;

  box-shadow: 0 0 12px var(--blood-glow);
}

.btn-main:hover {
  background: var(--blood-dark);
  box-shadow: 0 0 20px var(--blood-glow);
}

/* ============================= */
/* INFORMATION PAGE (BLOCK SYS) */
/* ============================= */

.information-provenance {
  padding: 80px 20px;

  display: flex;
  flex-direction: column; /* IMPORTANT */
  align-items: center;
  gap: 10px; /* espace entre blocs */
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  text-align: center;
}

.logo2 {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.informations-1 {
  width: 100%;
  max-width: 750px;

  padding: 35px 30px;

  background: var(--panel);
  border: 1px solid rgba(112,0,0,0.25);
  border-radius: 18px;

  animation: fadeUp 0.8s ease;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.informations-1,
.avis-section {
  width: 100%;
  max-width: 750px;
}

/* TITRE */
.information-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;

  font-size: 2rem;

  color: var(--blood);
  text-shadow: 0 0 12px var(--blood-glow);
}

/* TEXTE */
.information-text {
  margin-top: 20px;
  line-height: 1.8;
  text-align: left;
  max-width: 650px;
  margin: 20px auto 0;

  color: var(--text);
}

/* ============================= */
/* AVIS CLIENTS (SLIDER CLEAN)  */
/* ============================= */

.avis-section {
  margin-top: 80px;
}

.avis-slider {
  max-width: 700px;
  margin: auto;

  overflow: hidden;
  border-radius: 12px;
}

/* TRACK */
.avis-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

/* CARD (ALIGNÉE BLOCK SYSTEM) */
.avis-card {
  min-width: 100%;

  background: #111;
  border: 1px solid #222;
  border-radius: 12px;

  padding: 30px;

  box-sizing: border-box;

  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* glow subtil cohérent */
.avis-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(112, 0, 0, 0.15),
    transparent 70%
  );

  opacity: 0;
  transition: 0.3s;
}

.avis-card:hover::before {
  opacity: 1;
}

.avis-card:hover {
  transform: translateY(-4px);
  border-color: var(--blood);
  box-shadow: 0 0 18px var(--blood-glow);
}

/* TEXTES */
.avis-card p {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}

.avis-card span {
  color: var(--blood);
  font-weight: bold;
}

/* ============================= */
/* CONTROLS AVIS               */
/* ============================= */

.avis-controls {
  margin-top: 20px;
  margin-bottom: 80px; /* espace avec le footer */
  display: flex;
  justify-content: center;
  gap: 10px;
}

.avis-controls button {
  width: auto;
}

/* boutons cohérents avec UI globale */
.avis-btn {
  background: #111;
  border: 1px solid #222;
  color: white;

  padding: 6px 10px;
  font-size: 0.9rem;
  border-radius: 6px;

  cursor: pointer;
  transition: 0.3s;

  width: auto;        /* important */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 32px;    /* ↓ très compact */
}

.avis-btn:hover {
  border-color: #ff0033;
  color: #ff0033;
  transform: translateY(-2px);
}

.avis-section {
  margin-top: 80px;
  margin-bottom: 80px; /* 👈 IMPORTANT */
}

/* ============================= */
/* BLOCK SYSTEM (BASE UNIQUE)   */
/* ============================= */

.block-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;

  padding: 18px 20px;

  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* glow système global */
.block-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(112, 0, 0, 0.15),
    transparent 70%
  );

  opacity: 0;
  transition: 0.3s;
}

.block-card:hover::before {
  opacity: 1;
}

.block-card:hover {
  transform: translateY(-4px);
  border-color: var(--blood);
  box-shadow: 0 0 12px var(--blood-glow);
}

/* ============================= */
/* AVIS CARD (SIMPLIFIÉ)        */
/* ============================= */

.avis-card p {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}

.avis-card span {
  color: var(--blood);
  font-weight: bold;
}

/* ============================= */
/* BOOK                          */
/* ============================= */

html {
    scroll-behavior: smooth;
}

/* ========================= */
/* HERO */
/* ========================= */

.book-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a, #0f0f0f);
    padding: 20px;
}

.book-hero-content h1 {
    font-size: 4rem;
    letter-spacing: 3px;
    margin: 0;
}

.book-hero-content p {
    opacity: 0.7;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* ========================= */
/* FILTRES */
/* ========================= */

.book-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover {
    border-color: #8b0000;
    background: rgba(139, 0, 0, 0.2);
}

.filter-btn.active {
    background: #8b0000;
    border-color: #8b0000;
}

/* ========================= */
/* SECTION CATEGORY */
/* ========================= */

.book-gallery {
    padding: 40px 0 100px;
}

.category-block {
    margin: 80px auto;
    padding: 0 40px;
    max-width: 1200px; /* centre toute la section */
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 3px solid #8b0000;
}

/* ========================= */
/* SLIDER */
/* ========================= */

.slider {
    position: relative;
    width: 100%;
    max-width: 1000px; /* 👈 clé du centrage visuel */
    margin: 0 auto;

    overflow: hidden;
    border-radius: 20px;

    padding: 0 80px;
    box-sizing: border-box;
}

/* TRACK */
.slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* SLIDE */
.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
}

/* IMAGE (FIX PRINCIPAL) */
.slide img {
    max-width: 75%;
    max-height: 60vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);

    transition: transform 0.3s ease;
}

.emojis img {
    max-width: 140px;
    max-height: 140px;
}

.akemi img,
.axolotls img,
.gothique img {
    max-width: 95%;
    max-height: 70vh;
}



.slide img:hover {
    transform: scale(1.02);
}

/* ========================= */
/* FLÈCHES */
/* ========================= */

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;

    font-size: 1.5rem;
    cursor: pointer;

    border-radius: 12px;
}

.prev:hover, .next:hover {
    background: #8b0000;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {

    .book-hero-content h1 {
        font-size: 2.5rem;
    }

    .slide img {
        max-height: 55vh;
    }

    .category-block {
        padding: 0 20px;
    }

    .slider {
        padding: 0 50px;
    }
}

/* ============================= */
/* RESPONSIVE                  */
/* ============================= */

@media (max-width: 768px) {

  /* GLOBAL TYPO / ESPACEMENT     */

  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* HEADER / LOGOS              */

  .title {
    font-size: 2rem;
    gap: 10px;
  }

  .logo {
    width: 50px;
  }

  .animation-acceuil {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  /* NAVIGATION MOBILE           */

  .nav {
    padding: 12px;
  }

  .nav-list {
    flex-direction: column;
    gap: 12px;
  }

  .nav a {
    font-size: 1rem;
  }

  /* LAYOUT SECTIONS             */

  .presentation,
  .presentation--reverse {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    text-align: center;
  }

  /* BLOCKS / CARDS              */

  .pack-card,
  .custom-grid div,
  .avis-card {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }

  .packs-grid,
  .custom-grid {
    gap: 15px;
  }

  /* INFORMATION / AVIS          */

  .information-title {
    font-size: 1.5rem;
    flex-direction: column;
  }

  .information-provenance {
    padding: 50px 5%;
  }

  .avis-slider {
    max-width: 100%;
  }

  /* CONTACT FORM                */

  .contact-form {
    padding: 25px;
  }

  .contact-title {
    flex-direction: column;
    font-size: 1.5rem;
    text-align: center;
  }

  /* FOOTER                      */

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-section {
    width: 100%;
  }
}

