/* -------------------------------------------------------------
   Kateb Cultural Association - Design System & Custom Styles
   Esthétique : Warm Sunset & Maroon/Champagne (#59171b & #fed7b8)
   Structure Unique : Floating Bottom Dock & Top Header Layout
   Zéro émoji dans l'ensemble du projet
------------------------------------------------------------- */

/* Variables de configuration globale */
:root {
  /* Couleurs Palette Image */
  --primary: #59171b;             /* Bordeaux / Terre cuite sombre */
  --primary-light: #782329;       /* Bordeaux moyen */
  --primary-glow: #9c323a;        /* Bordeaux lumineux */
  --accent-gold: #c68f63;         /* Sable doré / Cuivre */
  --accent-gold-light: #fed7b8;   /* Champagne / Pêche chaud */
  --accent-gold-pale: #fff1e6;    /* Crème champagne très clair */
  --bg-cream: #fdfaf7;            /* Sable doux / Blanc chaud */
  --bg-white: #ffffff;            /* Blanc pur */
  --text-dark: #2d2223;           /* Noir prune doux */
  --text-muted: #6b5a5b;          /* Gris prune doux */
  --border-light: rgba(89, 23, 27, 0.12); /* Bordure bordeaux transparente */
  --border-gold: rgba(198, 143, 99, 0.35); /* Bordure or transparente */
  --tax-green: #198754;           /* Vert fiscal officiel */
  --tax-green-light: #2bec78;     /* Vert éclatant pour indicateur */

  /* Polices */
  --font-headings: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Dimensions */
  --header-desktop-height: 90px;
  --header-mobile-height: 80px;
  --max-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;

  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(89, 23, 27, 0.04);
  --shadow-md: 0 8px 24px rgba(89, 23, 27, 0.08);
  --shadow-lg: 0 16px 40px rgba(89, 23, 27, 0.15);
  --shadow-gold: 0 8px 30px rgba(198, 143, 99, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Réinitialisation de base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Structure de conteneur */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

p {
  color: var(--text-muted);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* -------------------------------------------------------------
   AMBIIENT DECORATIVE DIVS & FLOATING ORBS
------------------------------------------------------------- */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
  pointer-events: none;
  z-index: -2;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background-color: var(--primary);
  top: 10%;
  left: -150px;
  animation: floatOrb1 20s infinite ease-in-out;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background-color: var(--accent-gold-light);
  bottom: 8%;
  right: -200px;
  animation: floatOrb2 25s infinite ease-in-out;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background-color: var(--primary-glow);
  top: 45%;
  left: 45%;
  animation: floatOrb1 22s infinite ease-in-out reverse;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 50px) scale(0.92); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Boutons avec animation de survol Shimmer */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(254, 215, 184, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-cream);
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(89, 23, 27, 0.05);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Séparateurs */
.separator-gold {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 4rem 0;
  opacity: 0.5;
}

/* -------------------------------------------------------------
   STRUCTURE DE NAVIGATION : FLOATING TOP HEADER & BOTTOM DOCK
------------------------------------------------------------- */

/* Floating Top Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-desktop-height);
  background: linear-gradient(to bottom, var(--bg-cream) 70%, rgba(253, 250, 247, 0));
  z-index: 999;
  display: flex;
  align-items: center;
  border: none;
  transition: background var(--transition-fast);
}

.header-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.logo:hover {
  transform: scale(1.03);
}

.logo-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

/* Top Right Tax Compliance Badge in Header */
.header-right-side {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-contact-info {
  display: flex;
  align-items: center;
}

.header-email-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  background-color: rgba(253, 250, 247, 0.5);
  transition: all var(--transition-fast);
}

.header-email-link:hover {
  color: var(--accent-gold);
  border-color: var(--primary-light);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.top-tax-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  transition: transform var(--transition-normal);
}

.top-tax-badge:hover {
  transform: translateY(-2px);
}

.tax-badge-official {
  background-color: var(--tax-green);
  color: var(--bg-white);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(25, 135, 84, 0.25);
}

.tax-reg-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Floating Bottom Navigation Dock */
.desktop-dock {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(89, 23, 27, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1.5px solid var(--accent-gold);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 12px 36px rgba(89, 23, 27, 0.3);
  animation: slideInDock var(--transition-slow) forwards;
}

@keyframes slideInDock {
  from {
    transform: translate(-50%, 100px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.dock-list {
  display: flex;
  list-style: none;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
}

.dock-indicator {
  position: absolute;
  background-color: var(--accent-gold-light);
  border-radius: 30px;
  z-index: 1;
  pointer-events: none;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), top 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(254, 215, 184, 0.3);
  opacity: 0;
}

.dock-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  display: block;
  position: relative;
  z-index: 3;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.dock-link:hover {
  color: var(--accent-gold-light);
  transform: scale(1.05);
}

.dock-link:active {
  transform: scale(0.95);
}

.dock-link.active {
  color: var(--primary) !important;
}

/* Hamburger menu lines (Hidden on desktop) */
.hamburger-btn {
  display: none;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: var(--primary);
  border-left: 1px solid var(--border-gold);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.drawer-logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  color: var(--accent-gold-light);
}

.close-drawer-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--bg-cream);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bg-cream);
  display: block;
  padding: 0.4rem 0;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-gold-light);
  padding-left: 0.5rem;
}

.drawer-footer {
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Drawer overlay backdrop */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(89, 23, 27, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* -------------------------------------------------------------
   SPA CONTAINER ADJUSTMENTS
------------------------------------------------------------- */
#spa-container {
  margin-top: var(--header-desktop-height);
  min-height: calc(100vh - var(--header-desktop-height));
  padding-bottom: 7rem;
  position: relative;
}

.page {
  display: none;
}

.page.active {
  display: block;
  animation: fadeInPage var(--transition-slow) forwards;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.py-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Section Header standardisé */
.section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-pretitle {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.section-intro {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Grids utilitaires */
.grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vertical-align-center {
  align-items: center;
}

.gap-large {
  gap: 5rem;
}

/* ACCUEIL - HERO */
.hero-section {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1.5px solid var(--border-gold);
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-section:hover .hero-image {
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(89, 23, 27, 0.95) 0%, rgba(89, 23, 27, 0.8) 55%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  margin-left: 6%;
  padding: 0 1.5rem;
  color: var(--bg-cream);
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(198, 143, 99, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Green Status Indicator Badge in Hero */
.tax-status-pill {
  background-color: var(--tax-green);
  color: var(--bg-white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.35);
}

.status-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--tax-green-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--tax-green-light);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.main-title {
  color: var(--bg-cream);
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 800;
}

.hero-subtitle {
  color: rgba(250, 248, 245, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  max-width: 650px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-actions .btn-secondary {
  color: var(--bg-cream);
  border-color: var(--bg-cream);
}

.hero-actions .btn-secondary:hover {
  background-color: rgba(250, 248, 245, 0.1);
  border-color: var(--accent-gold-light);
}

/* Teaser Grid sous le Hero */
.trust-teaser-section {
  padding: 4rem 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.teaser-card {
  padding: 2rem;
  background-color: var(--bg-cream);
  border-radius: var(--border-radius-md);
  border-top: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.teaser-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.teaser-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.teaser-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* TRUST & REGISTRY CARD (Fiche Administrative) */
.registry-card-section {
  padding: 5rem 0;
}

.trust-card {
  max-width: 850px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(89, 23, 27, 0.05);
}

.trust-card-header {
  background-color: var(--primary);
  color: var(--bg-cream);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid var(--accent-gold);
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-badge-official {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--accent-gold-light);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.trust-reg-num {
  font-family: var(--font-body);
  font-weight: 600;
  background-color: rgba(250, 248, 245, 0.1);
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  border: 1px solid rgba(250, 248, 245, 0.2);
}

.trust-tabs {
  display: flex;
  background-color: #3b0f12;
  border-bottom: 1px solid var(--border-light);
}

.trust-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 1.2rem 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(250, 248, 245, 0.65);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-bottom: 3px solid transparent;
}

.trust-tab-btn:hover {
  color: var(--bg-cream);
  background-color: rgba(250, 248, 245, 0.05);
}

.trust-tab-btn.active {
  color: var(--accent-gold-light);
  background-color: rgba(250, 248, 245, 0.08);
  border-bottom-color: var(--accent-gold-light);
}

.trust-tab-content {
  display: none;
  padding: 2.5rem;
}

.trust-tab-content.active {
  display: block;
  animation: fadeInTab var(--transition-fast) forwards;
}

@keyframes fadeInTab {
  from { opacity: 0; }
  to { opacity: 1; }
}

.registry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.registry-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(89, 23, 27, 0.05);
  padding-bottom: 0.8rem;
}

.reg-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.reg-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.trust-card-footer {
  background-color: var(--bg-cream);
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.trust-link:hover {
  color: var(--primary-light);
  transform: translateX(3px);
}

/* SECTION ABOUT (A PROPOS) */
.about-text-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--primary-light);
  font-weight: 500;
}

.about-mission-block {
  background-color: var(--accent-gold-pale);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border-left: 5px solid var(--primary);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.about-mission-block:hover {
  transform: translateX(4px);
}

.about-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background-color: var(--accent-gold);
}

/* -------------------------------------------------------------
   OFFSET PARALLAX COLOR BLOCKS BEHIND IMAGES
------------------------------------------------------------- */
.styled-image-container {
  position: relative;
  overflow: visible !important; /* Allow the offset block to protrude */
  border-radius: var(--border-radius-lg);
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.image-bg-color-block {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: var(--accent-gold-light);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  transition: transform var(--transition-normal);
  border: 1px solid var(--border-gold);
}

.styled-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  border: 1.5px solid var(--border-gold);
  background-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.styled-image-container:hover .image-bg-color-block {
  transform: translate(8px, 8px);
}

.styled-image-container:hover img {
  transform: translate(-5px, -5px) scale(1.02);
}

.image-border-decoration {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1.5px solid rgba(254, 215, 184, 0.25);
  pointer-events: none;
  border-radius: calc(var(--border-radius-lg) - 5px);
  z-index: 2;
}

/* SERVICE DETAILS CARD */
.service-detail-card {
  padding: 2.5rem;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(89, 23, 27, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-detail-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

/* Colored Service Card - Dark Bordeaux Contrast Card */
.service-detail-card-dark {
  background-color: var(--primary);
  color: var(--bg-cream);
  border: 1.5px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.service-detail-card-dark h3 {
  color: var(--bg-white);
}

.service-detail-card-dark p {
  color: rgba(253, 250, 247, 0.85);
}

.service-detail-card-dark .service-badge {
  background-color: var(--accent-gold-light);
  color: var(--primary);
  border: 1px solid var(--accent-gold);
}

.service-detail-card-dark .about-list li {
  color: rgba(253, 250, 247, 0.85);
}

.service-detail-card-dark .about-list li::before {
  background-color: var(--accent-gold-light);
}

.service-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: rgba(89, 23, 27, 0.05);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: 1px solid var(--primary-light);
}

.service-detail-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* TEAM STAT BOXES */
.team-composition {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.team-stat-box {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-normal), border-color var(--transition-fast);
}

.team-stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.team-stat-num {
  display: block;
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.team-stat-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

/* BLOG SECTION */
.blog-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-gold);
  margin-bottom: 4rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-featured-grid:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(89, 23, 27, 0.08);
}

.blog-featured-graphic {
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-svg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.blog-featured-grid:hover .blog-svg-image {
  transform: scale(1.05);
}

.blog-featured-details {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-date {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.blog-featured-details h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.blog-featured-details p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(89, 23, 27, 0.05);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.blog-card-body {
  padding: 2rem;
}

.blog-card-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.blog-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.9rem;
}

/* TESTIMONIALS WITH SLIDE IN ANIMATION */
.testimonial-slider {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
}

.testimonial-item {
  animation: fadeInTestimonial var(--transition-normal) forwards;
}

.testimonial-item.hidden {
  display: none;
  opacity: 0;
}

@keyframes fadeInTestimonial {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-quote {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1px;
  display: block;
}

.testimonial-controls {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-ctrl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.testimonial-ctrl-btn:hover {
  background-color: var(--primary);
  color: var(--bg-cream);
  border-color: var(--primary);
  transform: scale(1.05);
}

/* FAQ ACCORDION WITH SLIDING HOVER EFFECT */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast), transform var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  transition: padding-left var(--transition-normal), color var(--transition-fast);
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 4px;
  height: 16px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.faq-question:hover {
  padding-left: 2.2rem;
  color: var(--primary-light);
}

.faq-question:hover::before {
  transform: translateY(-50%) scaleX(1);
}

.faq-icon-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
  transform: rotate(45deg);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open {
  border-color: var(--accent-gold);
}

.faq-item.open .faq-icon-arrow {
  transform: rotate(-135deg);
}

/* Smooth content sliding */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  min-height: 0;
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: padding var(--transition-normal);
}

.faq-item.open .faq-answer > p {
  padding: 0 1.8rem 1.5rem 1.8rem;
}

/* CONTACT & NEWSLETTER */
.contact-info-block {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background-color: var(--bg-white);
  padding: 1.8rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-fast);
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Formulaires de Contact */
.contact-form {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.contact-form:hover {
  transform: translateY(-2px);
}

.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 0.9rem;
  border: 1.5px solid rgba(89, 23, 27, 0.15);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  background-color: var(--bg-cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(198, 143, 99, 0.15);
  background-color: var(--bg-white);
}

/* Spinner pour animation de chargement du bouton */
.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(250, 248, 245, 0.3);
  border-top-color: var(--bg-cream);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

.btn-spinner.hidden {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Newsletter block */
.newsletter-signup-box {
  background-color: var(--primary-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--accent-gold);
  color: var(--bg-cream);
  margin-top: 3rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.newsletter-signup-box:hover {
  transform: translateY(-2px);
}

.newsletter-signup-box h4 {
  color: var(--accent-gold-light);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.newsletter-signup-box p {
  color: rgba(250, 248, 245, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--accent-gold);
  border-radius: var(--border-radius-sm);
  background-color: rgba(250, 248, 245, 0.1);
  color: var(--bg-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(250, 248, 245, 0.45);
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(250, 248, 245, 0.15);
  border-color: var(--accent-gold-light);
}

.newsletter-status {
  font-size: 0.85rem;
  margin-top: 0.8rem;
  font-weight: 600;
}

.newsletter-status.success {
  color: #9eeaf9;
}

.newsletter-status.error {
  color: #ff8c8c;
}

.newsletter-status.hidden {
  display: none;
}

/* Notification banners */
.notification-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary);
  border: 1px solid var(--accent-gold);
  color: var(--bg-cream);
  padding: 1.2rem 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: flex;
  align-items: center;
  animation: slideInNotification 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.notification-banner.hidden {
  display: none !important;
}

.notification-banner.success-banner {
  border-left: 6px solid var(--accent-gold-light);
}

.notification-banner.error-banner {
  border-left: 6px solid #e06c75;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#notification-message {
  font-size: 0.95rem;
  font-weight: 500;
}

.notification-close {
  background: none;
  border: none;
  color: var(--bg-cream);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
}

.notification-close:hover {
  opacity: 1;
}

@keyframes slideInNotification {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* GLOBAL FOOTER WITH GEOMETRIC MOTIF BACKGROUND */
.main-footer {
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z M50 10 L90 50 L50 90 L10 50 Z M50 20 L80 50 L50 80 L20 50 Z M50 30 L70 50 L50 70 L30 50 Z M50 40 L60 50 L50 60 L40 50 Z' fill='none' stroke='%23fed7b8' stroke-width='0.5' stroke-opacity='0.05'/%3E%3Cpath d='M0 0 L100 100 M100 0 L0 100' fill='none' stroke='%23fed7b8' stroke-width='0.5' stroke-opacity='0.03'/%3E%3Ccircle cx='50' cy='50' r='5' fill='none' stroke='%23fed7b8' stroke-width='0.5' stroke-opacity='0.04'/%3E%3C/svg%3E");
  color: var(--bg-cream);
  padding: 8rem 0 2rem 0;
  position: relative;
  overflow: visible;
  border-top: none;
}

.footer-skew-accent {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--primary);
  transform: skewY(-1.5deg);
  z-index: 1;
}

/* Glassmorphism Newsletter row inside footer */
.footer-newsletter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 248, 245, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1.5px solid rgba(254, 215, 184, 0.15);
  padding: 2.5rem 3.5rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 5rem;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-cta-text h3 {
  color: var(--accent-gold-light);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.newsletter-cta-text p {
  color: rgba(253, 250, 247, 0.85);
  font-size: 0.95rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-newsletter-form input {
  padding: 0.8rem 1.2rem;
  border: 1.5px solid var(--accent-gold);
  border-radius: var(--border-radius-sm);
  background-color: rgba(250, 248, 245, 0.1);
  color: var(--bg-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-width: 280px;
  transition: all var(--transition-fast);
}

.footer-newsletter-form input::placeholder {
  color: rgba(250, 248, 245, 0.45);
}

.footer-newsletter-form input:focus {
  outline: none;
  background-color: rgba(250, 248, 245, 0.15);
  border-color: var(--accent-gold-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo-img {
  filter: drop-shadow(0 2px 8px rgba(254, 215, 184, 0.25));
  transition: transform var(--transition-slow);
}

.footer-brand:hover .footer-logo-img {
  transform: rotate(45deg);
}

.footer-logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--accent-gold-light);
}

.footer-brand-desc {
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-badge-founded {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  background-color: rgba(254, 215, 184, 0.08);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-nav-list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-link {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.75);
  display: inline-block;
  transition: all var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--accent-gold-light);
  transform: translateX(4px);
}

.footer-compliance-card {
  display: flex;
  flex-direction: column;
}

.compliance-glass-panel {
  background-color: rgba(250, 248, 245, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(254, 215, 184, 0.15);
  padding: 1.8rem;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.compliance-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.digital-seal-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px dashed var(--accent-gold);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.compliance-details p {
  color: rgba(250, 248, 245, 0.75);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.compliance-details p:last-child {
  margin-bottom: 0;
}

.compliance-details strong {
  color: var(--bg-cream);
}

.compliance-details .highlight-gold {
  color: var(--accent-gold-light) !important;
}

.footer-bottom-row {
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.footer-bottom-left p {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.45);
  line-height: 1.5;
}

.back-to-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  background-color: transparent;
  color: var(--accent-gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.back-to-top-btn:hover {
  background-color: var(--accent-gold-light);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(254, 215, 184, 0.2);
}

/* -------------------------------------------------------------
   RESPONSIVE DESIGN (Tablettes & Mobiles adaptation)
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .main-header {
    height: var(--header-mobile-height);
    background-color: var(--bg-white);
    border-bottom: 1.5px solid var(--border-light);
    padding: 0 1.5rem;
  }

  .header-container {
    padding: 0;
  }
  
  .top-tax-badge,
  .desktop-dock {
    display: none; /* masqués pour le mobile */
  }
  
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  #spa-container {
    margin-top: var(--header-mobile-height);
    padding: 2rem 1.5rem 5rem 1.5rem;
  }

  .main-title {
    font-size: 2.6rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  /* Disable parallax blocks on mobile to simplify layout rendering */
  .image-bg-color-block {
    display: none;
  }
  .styled-image-container img {
    box-shadow: var(--shadow-md);
  }
  .styled-image-container:hover img {
    transform: none;
  }
}

@media (max-width: 768px) {
  .grid-two-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .reverse-mobile {
    direction: rtl;
  }
  
  .reverse-mobile .text-content,
  .reverse-mobile .graphic-content {
    direction: ltr;
  }
  
  .main-title {
    font-size: 2.1rem;
  }
  
  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .registry-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .blog-featured-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-featured-details {
    padding: 2rem;
  }
  
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row-two {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero-badge-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
  }
}
