/* === Reset & Variables === */
:root {
  --primary-color: #072049;
  --secondary-color: #e63946;
  --text-color: #1f2937;
  --light-color: #fff;
  --dark-bg: #0a192f;
  --transition: all 0.3s ease-in-out;
  --font-title: 'Roboto', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-timer: 'PT Mono', monospace;
  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --font-display: 'Bebas Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html, body{
  height: 100%;
  margin: 0%;
  font-family: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-sans); 
  font-weight: 400; 
  line-height: 1.6;
  color: var(--text-color);
  background: var(--light-color);
  display: flex;
  flex-direction:column;
  min-height: 100vh;
}

p {
  font-family: var(--font-body); /* Montserrat */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
}

main {
    flex:1;
}

footer{
  padding: 20px;
  background-color: #222;
  color: white;
  text-align: center;
  margin-top: auto; /* ensure it sticks to bottom */
}

footer p {
  margin: 0; /* no extra gap under the text */
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 27, 73, 0.95);
  color: white;
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-space {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 2px;
}

.logo-link {
  display: inline-block;    /* Makes the link behave like the image size */
  line-height: 0;           /* Removes extra space caused by inline text baseline */
}

.logo-image {
    max-height: 50px;   /* limits the height of the logo */
    width: auto;        /* keeps the original width ratio */
    object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
    font-size: 1.2rem; /* adjust as needed */
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

.nav-cta .btn {
  padding: 8px 15px;
  background: var(--secondary-color);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.nav-cta .btn:hover {
  background: #e63946;
}

.navbar a {
    font-family: var(--font-body);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin-bottom: 4px;
  border-radius: 5px;
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 27, 73, 0.6);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* === Buttons (Optimized) === */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.btn:hover {
  background: var(--secondary-color);
}

/* Secondary button variant */
.btn-secondary {
  background: var(--secondary-color);
  color: white;
  border: none;
}

.btn-secondary:hover {
  background: var(--primary-color);
}

/* === Countdown === */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  font-family: 'PT Mono', monospace;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em; /* optional: adds digital-style spacing */
}

.countdown-label {
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif; /* <-- match your body font for labels */
  text-transform: uppercase; /* optional: keeps it tidy and uniform */
  opacity: 0.8; /* optional: slight fade for secondary text */
}

/* === Sections === */
.section {
  padding: 80px 0;
  text-align: center;
}

.section-dark {
  background: var(--dark-bg);
  color: white;
}

.section-title {
  font-size: 4rem;
  font-family: var(--font-title);
  font-weight: 900;
  color: white;
  margin-bottom: 40px;
  margin-top: 25px;
  text-align: center;
}

/* === Team / Association Layout === */
/* Main section */
.equipe-section {
  width: 100%;
  height:100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Flex container: 2 columns */
.equipe-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

/* Left: Image (60%) */
.equipe-image {
  width: 60%;
  height: 100%;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures full coverage */
  display: block;
}

/* Right: Text (40%) */
.equipe-content {
  width: 40%;
  height:100%;
  background-color: #001f5b; /* Dark blue */
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.equipe-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.equipe-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.equipe-button {
  background-color: black;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.equipe-button:hover {
  background-color: #1f2937;
}

/* === Impact Section (Light Version) === */
.impact-section {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #fff; /* Light neutral background */
  color: #1f2937; /* Dark text color */
  overflow: hidden;
}

/* === Titles === */
.impact-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 100px;
  text-align: center;
  color: #1f2937;
}

/* === Stats Section === */
.impact-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.impact-card {
  background: var(--primary-color); /* Your main blue */
  color: white;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
}

/* === Progress Bar === */
.progress-bar {
  background: #ccc;
  border-radius: 20px;
  overflow: hidden;
  height: 20px;
  margin: 25px 50px;
}

.progress {
  background: var(--secondary-color);
  height: 100%;
  width: 0;
  transition: width 1s ease-in-out;
}

.progress-text {
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  color: #1f2937;
}

/* === Dynamic Text === */
.impact-dynamic {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 15px;
  color: #1f2937;
}

/* === Participation Section === */
.participation {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.participation-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1f2937;
  text-align: center;
}

/* === Cards === */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  color: #1f2937;
  text-align: center;
}

/* === Buttons === */
.btn {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--secondary-color);
}

.btn-secondary {
  background: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background: var(--primary-color);
}

/* === Bleuet Section === */
/* Main section */
.bleuet-section {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}    

/* Flex container */
.bleuet-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  gap: 0;
}

/* Right: Image (50%) */
.bleuet-image {
  width: 50%;
  height: 100%;
}

.bleuet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Left: Text (50%) */
.bleuet-content {
  width: 50%;
  height: 100%;
  background-color: #001f5b;
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-items: center; /* centers horizontally */
  justify-content: center; 
}

.bleuet-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  text-align: center;  
}

.bleuet-button {
  background-color: black;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  display: block; /* important for centering */
  width: fit-content; /* or set a fixed width */
  margin: 10px auto;  /* centers the button horizontally */
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-align: center;  /* aligns text to the left inside the button */
}

/* === Luc Section === */
/* Main section */
.lieu-section {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Flex container: 2 columns */
.luc-container {
  display: flex;
  flex-direction: row-reverse; /* reverse order so image is on the RIGHT */
  width: 100%;
  height: 100%;
}

/* Right: Image (60%) */
.luc-image {
  width: 60%;
  height: 100%;
}

.luc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures full coverage */
  display: block;
}

/* Left: Text (40%) */
.lieu-content {
  width: 40%;
  height: 100%;
  background-color: #e63946; /* Red background */
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Title styles */
.lieu-content h2 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.lieu-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

/* Paragraphs */
.lieu-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* Optional button (if you add one later) */
.luc-button {
  background-color: black;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.luc-button:hover {
  background-color: #1f2937;
}

/* === Gallery === */
/* === GALERIE CAROUSEL === */
.galerie-section {
  background-color: #001f5b;
  color: white;
  padding: 80px 0;
  text-align: center;
  height: 100vh;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-item {
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* Main photo */
.carousel-item.active {
  width: 600px;
  height: 350px;
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
}

/* Left photo */
.carousel-item.prev {
  width: 350px;
  height: 220px;
  z-index: 2;
  transform: translateX(-400px) scale(0.8);
  opacity: 0.6;
}

/* Right photo */
.carousel-item.next {
  width: 350px;
  height: 220px;
  z-index: 2;
  transform: translateX(400px) scale(0.8);
  opacity: 0.6;
}

/* Hidden */
.carousel-item.hidden {
  width: 350px;
  height: 220px;
  z-index: 1;
  opacity: 0;
  transform: translateX(0) scale(0.6);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 15px;
  font-size: 16px;
}

/* Navigation arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  font-weight: bold;
  color: #001f5b;
  transition: 0.3s;
  z-index: 10;
}

.carousel-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 25px;
}

.carousel-nav.next {
  right: 25px;
}

/* Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.indicator.active {
  background: #ffcc00;
  transform: scale(1.2);
}

/* === Sponsors === */
.sponsors-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-style: italic;
}

.sponsors-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.sponsors-category {
  font-size: 1.5rem;
  text-align: center;
  margin: 15px 0 10px;
  color: black;
}

/* --- Layouts --- */
.sponsors-grid-main,
.sponsors-grid-secondary {
  display: flex;
  justify-content: center;
  gap: 15px 20px;
  flex-wrap: wrap;
}

/* --- Sponsor items --- */
.sponsor-item {
  text-align: center;
  color: black;
}

.sponsor-logo {
  width: 150px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
}

/* For main sponsors (bigger slots) */
.sponsor-main .sponsor-logo {
  width: 250px;
  height: 140px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.95);
  transition: transform 0.3s ease, filter 0.3s ease;
  background-color: #fff;
}

/* Hover effect */
.sponsor-item:hover .sponsor-logo {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.sponsor-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* --- CTA --- */
.sponsors-cta {
  text-align: center;
  margin-top: 25px;
}

.sponsors-cta p {
  font-size: 1.1rem;
}

/* CONTACT SECTION */
.section-contact {
  background: #001F5B;
  height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  position: relative;
  z-index: 1;
  width: 80%; /* main block width */
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TITLES */

.section-subtitle {
  color: #aaa;
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.3rem;
  font-weight: 300;
}

/* MAIN CONTACT BLOCK */
.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

/* LEFT (EMAIL) */
.contact-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.info-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(230, 57, 70, 0.1);
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-5px);
}

/* CENTERED MAIL ICON */
.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e63946;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 34px;
  height: 34px;
  fill: white;
}

.info-title {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-item { cursor: pointer; outline: none; }
.info-item:focus { box-shadow: 0 0 0 3px rgba(0,123,255,0.12); border-radius: 6px; }

.info-text { user-select: text; 
             color: #fff;
}

.copy-feedback {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color, #007bff);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* EMAIL BUTTON */
.mailto-btn {
  background: white;
  color: #001f5b;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.mailto-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* RIGHT (SOCIAL MEDIA) */
.contact-right {
  flex: 1;
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* SOCIAL LINK (img + text) */
.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px 22px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  width: auto;
  white-space: nowrap;
}

.social-link img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.social-link span {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  text-align: left;
}

.social-link:hover {
  background: rgba(230, 57, 70, 0.15);
  border-color: #e63946;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

/* === FAQ Accordion === */
.pattern-bg {
    background: rgba(7, 27, 73) repeat top center;
    background-size: 406px 406px;
    width: 100%;
    padding: 80px 0;
    color: white;
}

.group {
    zoom: 1;
}

.faq_section {
    clear: both;
    margin: 0;
    padding: 0;
}

.infocol {
    margin-top: 30px !important;
    padding-top: 10px !important;
    border-top: 5px solid #fff;
}

.container {
    padding: 0 15px 10px;
    margin: 0 auto 30px;
    max-width: 1200px;
    overflow : hidden;
}

.col:first-child {
    margin-left: 0;
}

.span_1_of_4 {
    width: 22.6%;
}

.span_3_of_4 {
    width: 74.2%;
}

.col {
    display: block;
    float: left;
    margin: 10px 0 10px 3.2%;
}

/* Accordion heading */
#demo-accordion h3 {
    margin: 0;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
}

#demo-accordion h3 .z-title {
    font-size: 42px;
    text-transform: uppercase;
    line-height: 120%;
    font-family: "Knockout 74 A", "Knockout 74 B", sans-serif;
    font-style: normal;
    font-weight: 400;
}

#demo-accordion li {
  border: none;          /* remove black line */
  margin: 0;             /* remove spacing */
  padding: 0;
  list-style: none;
}

/* Style for FAQ headers */
#demo-accordion > li > h3 {
  position: relative;
  padding-right: 40px;   /* extra space for arrow */
  cursor: pointer;
  color: #000;
  background: #fff;
}

/* Arrow closed (pointing right) */
#demo-accordion > li > h3::after {
  content: "▸";              /* right arrow */
  position: absolute;
  right: 25px;               /* move it left from edge */
  font-size: 30px;           /* make it bigger */
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Arrow open (pointing down) */
#demo-accordion > li.active > h3::after {
  transform: rotate(90deg);  /* rotate arrow */
}

#demo-accordion > li > h3 {
}

/* Links inside the accordion */
#demo-accordion a {
    color: #fff;              /* make links white */
    text-decoration: underline; /* optional: keep underline for readability */
}

#demo-accordion a:hover {
    color: #fff;              /* slightly lighter on hover */
    text-decoration: none;    /* remove underline on hover */
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-section.active .faq-content {
    /* max-height is set dynamically by JS */
}

/* Clearfix */
.clear {
    clear: both;
    font-size: 0;
    line-height: 0;
    display: block;
}

:after,
:before {
    box-sizing: border-box;
}

/* === Footer === */
.footer {
  position: relative;                /* allows absolute positioning inside */
  background: var(--primary-color);
  color: white;
  padding: 20px;
  text-align: center;                /* center text block */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ensures text stays centered */
.footer-content p {
  margin: 3px 0;
  line-height: 1.4;
}

/* logo positioned at bottom right corner */
.logo-footer {
  position: absolute;
  top: 50%;               /* move to vertical center */
  right: 20px;            /* keep it on the right */
  display: flex;
  align-items: center;
  transform: translateY(-50%) scale(1);
  transform-origin: center right;
}

/* === Global Paragraph Font Fix === */
p {
  font-family: var(--font-body) !important;
}
p, 
.equipe-content p, 
.bleuet-content p, 
.lieu-content p, 
.faq-content p {
  font-family: var(--font-body) !important;
}
