/* =====================================================
   HISTOIRE.CSS — OLFACT
   Style : éditorial luxe / magazine parfumerie
   Palette : fond noir chaud, ivoire, or patiné
   ===================================================== */

/* =====================================================
   1. VARIABLES & RESET
   ===================================================== */

/* Import des polices Google Fonts */
 .cormorant-upright-light {
  font-family: "Cormorant Upright", serif;
  font-weight: 300;
  font-style: normal;

}

.dm-sans-omn> {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

:root {
  /* Couleurs principales */
  --color-bg:         #0d0b09;   /* fond noir chaud */
  --color-bg-alt:     #131008;   /* variante légèrement plus sombre */
  --color-surface:    #1a1610;   /* surface des cartes */
  --color-surface-2:  #221e14;   /* surface secondaire */
  --color-border:     #2e2818;   /* bordures subtiles */
  --color-border-2:   #3d3520;   /* bordures plus visibles */

  --color-text:       #f0ebe3;   /* ivoire clair (texte principal) */
  --color-text-muted: #9e9282;   /* texte secondaire */
  --color-text-faint: #5c5448;   /* texte très atténué */

  --color-gold:       #c9a96e;   /* or patiné (accent principal) */
  --color-gold-light: #e8d5a8;   /* or clair */
  --color-gold-dark:  #7a6035;   /* or foncé */

  --color-highlight:  rgba(201, 169, 110, 0.08); /* fond highlight-box */

  /* Typographie */
  --font-display: "Cormorant Upright", serif;
  --font-body:    "DM Sans", sans-serif;
  --font-italic:  "DM Sans", sans-serif;

  /* Espacements */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Layout */
  --max-width:       780px;
  --sidebar-width:   240px;
  --sidebar-offset:  280px;

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow:   0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Reset minimal */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Sélection de texte */
::selection {
  background: var(--color-gold-dark);
  color: var(--color-gold-light);
}


/* =====================================================
   2. BARRE DE PROGRESSION DE LECTURE
   ===================================================== */

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;            /* mis à jour par le JS */
  height: 2px;
  background: linear-gradient(
    to right,
    var(--color-gold-dark),
    var(--color-gold),
    var(--color-gold-light)
  );
  z-index: 9999;
  transition: width 0.1s linear;
}


/* =====================================================
   3. HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;

  /* Fond texturé avec dégradé */
  background:
    radial-gradient(ellipse at 20% 60%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    var(--color-bg);
}

/* Ligne décorative verticale gauche */
.hero::before {
  content: '';
  position: absolute;
  left: calc(50% - var(--max-width) / 2 - 40px);
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-gold-dark) 30%,
    var(--color-gold) 50%,
    var(--color-gold-dark) 70%,
    transparent
  );
  opacity: 0.4;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  border-left: 1px solid var(--color-border-2);
  animation: heroReveal 1.2s var(--transition-slow) both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-md);

  /* Légère variation de couleur sur certains caractères via gradient */
  background: linear-gradient(
    135deg,
    var(--color-text) 60%,
    var(--color-gold-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.hero__meta {
  margin-top: var(--space-sm);
}

/* Indicateur de scroll */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--color-gold);
  opacity: 0.4;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* =====================================================
   4. SOMMAIRE LATÉRAL
   ===================================================== */

#sommaire {
  position: fixed;
  top: 50%;
  left: max(1.5rem, calc(50% - var(--max-width) / 2 - var(--sidebar-offset)));
  transform: translateY(-50%);
  width: var(--sidebar-width);
  z-index: 100;
}

.sommaire__header {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border-2);
  opacity: 0.7;
}

#sommaire ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sommaire__link {
  display: block;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text-faint);
  text-decoration: none;
  padding: 4px 0 4px 12px;
  border-left: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast), padding-left var(--transition-fast);
  line-height: 1.4;
}

.sommaire__link:hover {
  color: var(--color-text-muted);
  border-left-color: var(--color-border-2);
  padding-left: 16px;
}

/* Classe ajoutée par le JS pour la section active */
.sommaire__link.active {
  color: var(--color-gold);
  border-left-color: var(--color-gold);
  padding-left: 16px;
}


/* =====================================================
   5. CONTENU PRINCIPAL
   ===================================================== */

#main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}


/* =====================================================
   6. SECTIONS DE CONTENU
   ===================================================== */

.content-section {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.content-section:last-of-type {
  border-bottom: none;
}



/* Titres h2 */
.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  position: relative;
  letter-spacing: -0.01em;
}

/* Ligne décorative sous h2 */
.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--color-gold);
}

/* Titres h3 */
.content-section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-light);
  margin: var(--space-md) 0 var(--space-sm);
  letter-spacing: 0.01em;
}

/* Paragraphes */
.content-section p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.4rem;
  font-weight: 300;
}

/* Emphases */
.content-section strong {
  font-weight: 400;
  color: var(--color-gold-light);
}

.content-section em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--color-text-muted);
}

/* sup */
sup {
  font-size: 0.65em;
  vertical-align: super;
}


/* =====================================================
   7. BOITES HIGHLIGHT "LE SAVIEZ-VOUS"
   ===================================================== */

.highlight-box {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: var(--color-highlight);
  border: 1px solid var(--color-border-2);
  border-left: 3px solid var(--color-gold);
  padding: 1.2rem 1.5rem;
  margin: var(--space-md) 0;
  border-radius: 0 2px 2px 0;
  transition: background var(--transition-fast);
}

.highlight-box:hover {
  background: rgba(201, 169, 110, 0.12);
}

.highlight-box__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.85;
}

.highlight-box div {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.highlight-box strong {
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}


/* =====================================================
   8. FRISE CHRONOLOGIQUE
   ===================================================== */

.timeline {
  position: relative;
  padding: var(--space-sm) 0 var(--space-sm) 2rem;
  margin-top: var(--space-md);
}

/* Ligne verticale de la timeline */
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-gold-dark) 10%,
    var(--color-gold-dark) 90%,
    transparent
  );
}

.timeline__item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Marqueur rond sur la ligne */
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.5rem;         /* aligne sur le trait de la timeline */
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 1px var(--color-gold-dark);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.timeline__item:hover::before {
  transform: scale(1.5);
  background: var(--color-gold-light);
}

.timeline__date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
  opacity: 0.8;
}

.timeline__content {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.timeline__content strong {
  color: var(--color-text);
  font-weight: 400;
}


/* =====================================================
   9. GRILLE DE CARTES (MATIÈRES PREMIÈRES)
   ===================================================== */

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: var(--space-md);
}

.ingredient-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-2);
  padding: 1.5rem;
  transition: border-color var(--transition-medium), background var(--transition-medium);
  position: relative;
  overflow: hidden;
}

/* Coin décoratif */
.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid var(--color-gold-dark);
  border-right: 1px solid var(--color-gold-dark);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.ingredient-card:hover {
  border-color: var(--color-gold-dark);
  background: var(--color-surface-2);
}

.ingredient-card:hover::before {
  opacity: 1;
}

.ingredient-card__header {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-gold-light);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}

.ingredient-card__origin {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--color-border);
}

.ingredient-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.ingredient-card strong {
  color: var(--color-gold);
  font-weight: 400;
}

.ingredient-card em {
  font-family: var(--font-italic);
  color: var(--color-text-faint);
}


/* =====================================================
   10. PORTRAITS HISTORIQUES
   ===================================================== */

.portrait-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-md);
}

.portrait-item {
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 1px solid var(--color-border);
  transition: border-color var(--transition-fast);
  position: relative;
}

.portrait-item:hover {
  border-left-color: var(--color-gold-dark);
}

/* Puce décorative */
.portrait-item::before {
  content: '◆';
  position: absolute;
  left: -0.45rem;
  top: 1.6rem;
  font-size: 0.45rem;
  color: var(--color-gold);
  line-height: 1;
}

.portrait-item__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.15rem;
  letter-spacing: 0.01em;
}

.portrait-item__era {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  opacity: 0.75;
}

.portrait-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 0;
}


/* =====================================================
   11. GLOSSAIRE
   ===================================================== */

.glossaire {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.glossaire__item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-sm);
  align-items: baseline;
  transition: background var(--transition-fast);
}

.glossaire__item:first-child {
  border-top: 1px solid var(--color-border);
}

.glossaire__item dt {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}

.glossaire__item dd {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.glossaire__item dd strong {
  color: var(--color-gold);
  font-weight: 400;
}

.glossaire__item dd em {
  font-family: var(--font-italic);
  color: var(--color-text-faint);
}


/* =====================================================
   12. FAQ
   ===================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-md);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text);
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;             /* supprime la flèche native */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition-fast);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Supprime le marqueur WebKit */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Icône + personnalisée */
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform var(--transition-medium), color var(--transition-fast);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--color-gold-light);
}

.faq-item summary:hover {
  color: var(--color-gold-light);
}

.faq-answer {
  padding: 0 0 1.4rem;
  animation: faqOpen 0.35s ease both;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--color-gold);
  font-weight: 400;
}


/* =====================================================
   13. SECTION CONCLUSION & SOURCES
   ===================================================== */

.conclusion-section {
  padding: var(--space-lg) 0;
}

.conclusion-section p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

.sources-block {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-2);
}

.sources-block h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  font-style: normal;
  opacity: 0.75;
}

.sources-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sources-block li {
  font-size: 0.82rem;
  color: var(--color-text-faint);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.sources-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold-dark);
}

.sources-block em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--color-text-faint);
}


/* =====================================================
   14. BOUTON RETOUR EN HAUT
   ===================================================== */

#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-2);
  color: var(--color-gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--transition-medium),
    visibility var(--transition-medium),
    transform var(--transition-medium),
    border-color var(--transition-fast),
    background var(--transition-fast);
  z-index: 500;
}

/* Classe ajoutée par le JS quand on scroll assez */
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--color-surface-2);
  border-color: var(--color-gold-dark);
}


/* =====================================================
   15. PIED DE PAGE
   ===================================================== */

.site-footer {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.site-footer p {
  font-size: 0.72rem;
  color: var(--color-text-faint);
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 0;
}


/* =====================================================
   16. ANIMATIONS "REVEAL" AU SCROLL
   Le JS ajoute la classe .revealed sur les éléments
   quand ils entrent dans le viewport.
   ===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Léger décalage pour les enfants imbriqués (cartes, timeline, etc.) */
.cards-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.cards-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.cards-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.cards-grid .reveal:nth-child(5) { transition-delay: 0.15s; }
.cards-grid .reveal:nth-child(6) { transition-delay: 0.25s; }

.portrait-list .reveal:nth-child(2) { transition-delay: 0.08s; }
.portrait-list .reveal:nth-child(3) { transition-delay: 0.16s; }
.portrait-list .reveal:nth-child(4) { transition-delay: 0.24s; }
.portrait-list .reveal:nth-child(5) { transition-delay: 0.32s; }
.portrait-list .reveal:nth-child(6) { transition-delay: 0.40s; }

.timeline__item:nth-child(2)  { transition-delay: 0.05s; }
.timeline__item:nth-child(3)  { transition-delay: 0.10s; }
.timeline__item:nth-child(4)  { transition-delay: 0.15s; }
.timeline__item:nth-child(5)  { transition-delay: 0.20s; }

.glossaire__item:nth-child(2)  { transition-delay: 0.06s; }
.glossaire__item:nth-child(3)  { transition-delay: 0.12s; }
.glossaire__item:nth-child(4)  { transition-delay: 0.18s; }

.faq-item:nth-child(2)  { transition-delay: 0.05s; }
.faq-item:nth-child(3)  { transition-delay: 0.10s; }
.faq-item:nth-child(4)  { transition-delay: 0.15s; }


/* =====================================================
   17. RESPONSIVE
   ===================================================== */

/* Masque le sommaire sur les écrans < 1200px */
@media (max-width: 1199px) {
  #sommaire {
    display: none;
  }

  .hero::before {
    display: none;
  }
}

/* Tablette */
@media (max-width: 860px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 5rem;
  }

  #main-content {
    padding: 0 1.2rem var(--space-xl);
  }

  .hero {
    padding: 5rem 1.2rem;
    min-height: 80vh;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .glossaire__item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .glossaire__item dt {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 540px) {
  :root {
    --space-lg: 2.5rem;
    --space-xl: 4rem;
  }

  .hero {
    padding: 4rem 1rem;
    min-height: 70vh;
  }

  .hero__inner {
    padding-left: 1rem;
    border-left: 2px solid var(--color-gold-dark);
  }

  .content-section {
    padding: var(--space-md) 0;
  }

  .highlight-box {
    padding: 1rem;
  }

  #back-to-top {
    bottom: 1rem;
    right: 1rem;
  }

  .timeline {
    padding-left: 1.5rem;
  }
}

footer
{
    background-color: #1A0331;
    color: #D4B46A;
}

.footer-top
{
    display: flex;

    justify-content: space-between;

    padding: 60px 80px;

    border-top: 1px solid #7A5A28;
    border-bottom: 1px solid #7A5A28;
}

.footer-colonne
{
    flex: 1;
}

.footer-logo
{
    padding-right: 50px;
}

.footer-logo img
{
    width: 120px;
}

.footer-logo h3
{
    font-family: "Cormorant Upright", serif;
    font-size: 55px;
}

.slogan
{
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-navigation
{
    display: flex;
    flex-direction: column;
    align-items: center;

    border-left: 1px solid white;
    border-right: 1px solid white;
}

.footer-navigation h4
{
    margin-bottom: 25px;
    font-size: 24px;
    font-family: "Cormorant Upright", serif;
}

.footer-navigation a
{
    color: #D4B46A;
    text-decoration: none;

    margin-bottom: 20px;
}

.footer-navigation a:hover
{
    color: white;
}

.footer-citation
{
    display: flex;

    justify-content: center;
    align-items: center;

    text-align: center;

    font-family: "Cormorant Upright", serif;

    font-size: 50px;
}

.footer-bottom
{
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 25px 50px;

    font-size: 14px;
}

.footer-liens a
{
    color: #D4B46A;

    text-decoration: none;

    margin-left: 20px;
}

.footer-liens a:hover
{
    color: white;
}
