html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.slogan-notreHistoire {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: oblique;
  font-variation-settings: "wdth" 100;
  font-size: 1.5rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #334155;
  margin: 0 0 0.25rem;
  max-width: 36rem;
}
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: linear-gradient(165deg, #f3efff 0%, #faf9fc 38%, #eef5f3 100%);
  display: flex;
  flex-direction: column;
}

.accueil-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  text-align: left;
  padding: 0.1rem 0 1rem;
}

.accueil-hero__intro {
  max-width: 34rem;
}

.accueil-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
}

.accueil-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.accueil-btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
  color: #fff;
}

.accueil-btn--primary {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.35);
}

.accueil-btn--primary:hover {
  color: #fff;
}

.accueil-btn--secondary {
  background: #0f766e;
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.25);
}

.accueil-btn--secondary:hover {
  color: #fff;
}

.accueil-hero__visual {
  position: relative;
}

.accueil-hero__img {
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  display: block;
}

.accueil-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  text-align: left;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.25rem;
  border: 1px solid rgba(109, 40, 217, 0.1);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 18px 44px rgba(15, 23, 42, 0.08);
}

.accueil-mission__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accueil-mission__img {
  width: 100%;
  max-width: min(350px, 88vw);
  max-height: min(350px, 88vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.25rem;
  display: block;
  margin-inline: auto;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.accueil-mission__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1d3a9d;
  margin: 0 0 1.25rem;
  text-align: center;
}

.accueil-mission__bar {
  width: 4px;
  height: 1.15em;
  flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(180deg, #6d28d9, #9333ea);
}

.accueil-texte--mission {
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 400;
}

.accueil-texte--mission:last-of-type {
  margin-bottom: 1.35rem;
}

.accueil-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
}

.accueil-checklist__item {
  position: relative;
  padding-left: 1.85rem;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #1e293b;
}

.accueil-checklist__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #2dd4bf, #0d9488);
  border: none;
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.35);
}

.accueil-checklist__item::after {
  content: "✓";
  position: absolute;
  left: 0.3rem;
  top: 0.02em;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 900px) {
  .accueil-hero,
  .accueil-mission {
    grid-template-columns: 1fr;
  }

  .accueil-hero__intro {
    max-width: none;
    text-align: center;
  }

  .accueil-hero__actions {
    justify-content: center;
  }

  .accueil-mission__visual {
    order: -1;
  }

  .accueil-checklist {
    grid-template-columns: 1fr;
  }
}

.accueil-container {
  max-width: 1140px;
  width: 100%;
  margin: 20px auto;
  text-align: center;
  flex: 1;
  padding: 0 clamp(12px, 3vw, 20px);
}

.accueil-titre {
  font-family: "Satisfy", cursive;
  font-size: 2.95rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1d4ed8;
  letter-spacing: 0.02em;
}

.accueil-slogan {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #334155;
  margin: 0 0 0.25rem;
  max-width: 36rem;
}

.accueil-hero .accueil-slogan {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 901px) {
  .accueil-hero .accueil-slogan {
    margin-left: 0;
    margin-right: 0;
  }
}

.accueil-texte {
  font-family: "Archivo", sans-serif;

  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.015em;
  color: #0f172a;
  margin-bottom: 20px;
  -webkit-font-smoothing: antialiased;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s ease forwards;
}

.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#ftco-navbar .navbar-nav .nav-link {
  padding-left: 0px !important;
  padding-right: 0px !important;
  font-size: 15px !important;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  #ftco-navbar .navbar-nav .nav-link {
    padding-left: 30px !important;
    padding-right: 12px !important;
    font-size: 14px !important;
  }
}

.site-footer {
  background: #101c35;
  color: #e2e4e8;
  font-family: "Poppins", sans-serif;
}

.site-footer-centered .footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.5rem 0.65rem 0.55rem;
  text-align: center;
}

.site-footer-centered .footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 0.4rem;
}

.site-footer-centered .footer-address {
  margin-bottom: 0.4rem;
}

.site-footer-centered .footer-localisation {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.72rem;
  transition: color 0.2s ease;
}

.footer-localisation:hover {
  color: #00fff3;
  font-weight: 600;
}

.site-footer-centered .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem 0.75rem;
  margin-bottom: 0.45rem;
}

.site-footer-centered .footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.site-footer-centered .footer-nav a:hover {
  color: yellow;
}

.site-footer-centered .footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.site-footer-centered .footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: blue;
  border: 1px solid rgba(139, 195, 74, 0.6);
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.site-footer-centered .footer-social-link:hover {
  background: #604ac3;
  border-color: #8bc34a;
  transform: scale(1.05);
}

.site-footer-centered .footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.site-footer-centered .footer-brand {
  color: #8bc34a;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .accueil-container {
    margin: 24px auto;
    padding: 0 6px;
  }
  .accueil-titre {
    font-size: 2.15rem;
  }
  .accueil-slogan {
    font-size: 1.1rem;
  }
  .accueil-texte {
    font-size: 1.0625rem;
    font-weight: 500;
  }
  .site-footer-centered .footer-inner {
    padding: 0.5rem 0.6rem 0.55rem;
  }
  .site-footer-centered .footer-logo {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
  }
  .site-footer-centered .footer-nav {
    gap: 0.08rem 0.6rem;
  }
  .site-footer-centered .footer-nav a {
    font-size: 0.62rem;
  }
  .site-footer-centered .footer-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
  .site-footer-centered .footer-copy {
    font-size: 0.58rem;
    line-height: 1.4;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .accueil-container {
    margin: 28px auto;
    padding: 0 8px;
  }
  .accueil-titre {
    font-size: 2.35rem;
  }
  .accueil-slogan {
    font-size: 1.2rem;
  }
  .site-footer-centered .footer-logo {
    font-size: 1.15rem;
  }
  .site-footer-centered .footer-nav a {
    font-size: 0.65rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .accueil-container {
    margin: 32px auto;
  }
  .accueil-titre {
    font-size: 2.35rem;
  }
  .site-footer-centered .footer-inner {
    padding: 0.55rem 0.85rem 0.6rem;
  }
  .site-footer-centered .footer-nav {
    gap: 0.12rem 0.85rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .accueil-container {
    margin: 36px auto;
  }
  .accueil-titre {
    font-size: 2.55rem;
  }
  #ftco-navbar .navbar-nav .nav-link {
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 13px !important;
  }
}

@media (min-width: 1200px) {
  .accueil-container {
    margin: 30px auto;
  }
  .accueil-titre {
    font-size: 3.15rem;
  }
  #ftco-navbar .navbar-nav .nav-link {
    padding-left: 30px !important;
    padding-right: 12px !important;
    font-size: 14px !important;
  }
  .site-footer-centered .footer-inner {
    padding: 0.55rem 1rem 0.65rem;
  }
  .site-footer-centered .footer-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding-bottom: 2rem;
  }
  .accueil-container {
    margin: 30px auto;
  }
}

.etiquette-wrap {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  animation: etiquette-appear 0.6s ease forwards;
}

.etiquette-img {
  display: block;
  width: 120px;
  height: auto;
}

@keyframes etiquette-appear {
  to {
    opacity: 1;
  }
}

#ftco-navbar .navbar-nav .nav-item.active .nav-link,
#ftco-navbar .navbar-nav .nav-link.active {
  color: #1d4ed8 !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
