@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Megrim&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --text: #F0F0F0;
  --accent: #CC0B0D;
  --bg-color: #111111;
  /* Couleurs WORK PROCESS */
  --light-gray: #333333;
  --card-bg: #1A1A1A;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --timeline-width: 4px;
  --grid-color: rgba(255, 255, 255, 0.05);
  --grid-dot-color: rgba(255, 255, 255, 0.1);
  --glow-color: rgba(204, 11, 13, 0.6);
  /* FONTS */
  --title-font: 'Montserrat', sans-serif;
  --text-font: 'Inter', sans-serif;
  --footer-font: 'Lato', sans-serif;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  box-sizing: border-box;
}

html {
  line-height: 1.165 !important;
}



body {
  height: 100vh;
  width: 100vw;
  position: relative;
  font-size: 1.2em;
  font-family: var(--text-font);
  background-color: var(--bg-color);
  color: var(--text);
  scroll-behavior: smooth;
  overflow: hidden;
}



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

h2 .accent,
h3 .accent {
  color: var(--accent);
}

h2 {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  Letter-spacing: -0.025em;
  margin-bottom: 1rem;
  margin-top: 3rem !important;
  position: relative;
  display: inline-block;
}

h2::after {
  display: none;
}

@media (min-width: 768px) {
  h2::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 0.125rem;
  }
}

h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h2 span,
h3 span {
  color: var(--accent);
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

:where(h1){ font-size: 2rem; margin-block: .67em; }
:where(h2){ font-size: 1.5rem; margin-block: .75em; }
:where(h3){ font-size: 1.25rem; margin-block: .8em; }
:where(h4){ font-size: 1.125rem; margin-block: .85em; }
:where(h5){ font-size: 1rem; margin-block: .9em; }
:where(h6){ font-size: .875rem; margin-block: 1em; }

p {
  font-family: var(--text-font);
  font-size: 1.125rem;
  line-height: 1.75rem;
  /* max-width: 42rem; */
  margin: 0 auto;
}

footer {
  font-family: var(--footer-font);
}

.accent {
  color: var(--accent);
}

.red {
  color: var(--red);
}

.btn {
  background-color: var(--accent);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 0.25rem;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(204, 11, 13, 0.3);
}

/* Cache la scrollbar sur Webkit (Chrome, Safari) */
#scroll-container::-webkit-scrollbar {
  display: none;
}

/* HEADER */

#header {
  position: absolute;
  top: 100vh;
  /* Caché sous l'animation */
  width: 100%;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: linear-gradient(to bottom, #000000, transparent);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-bottom: 1px solid var(--accent);
}



/* Logo */

.logo-name .logo-title,
.logo-www {
  font-size: 26px;
  font-family: Megrim;
}

.logo-name {
  position: relative;
  width: 12vw;
  height: 30px;
}

.logo-name .logo-title {
  position: absolute;
  top: 0;
  left: 0;
}

.logo-www {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wB,
.logo-w0,
.logo-wA {
  position: absolute;
  margin-bottom: -25px;
}

.logo-wB {
  transform: rotate(120deg);
  transform-origin: center -1px;
}

.logo-wA {
  transform: rotate(-120deg);
  transform-origin: center -1px;
}

/* Hamburger */

.nav-toggler {
  position: relative;
  z-index: 100;
  width: 12vw;
  height: 35px;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.line {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  right: 0;
  background: var(--text);
  pointer-events: none;
  transition: transform 0.3s ease-out, opacity 0.1s ease-out;
}



.l1,
.l2,
.l3 {
  transition: transform 0.3s ease-in-out;
}

.l1 {
  transform: translateY(-10px);
}

.l3 {
  transform: translateY(10px);
}

.nav-toggler.active .l1 {
  transform: translate(0) rotate(135deg);
}

.nav-toggler.active .l2 {
  width: 650%;
  transform: translate(-150vw);
}

.nav-toggler.active .l3 {
  transform: translate(0) rotate(-135deg);
}

/* Menu */

nav {
  position: fixed;
  z-index: 98;
  width: 100vw;
  min-height: 100vh;
  right: -100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--title-font);
  background-color: var(--bg-color);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.7);
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.73, 0.11, 0.67, 0.84);
}

nav.active {
  transform: translate(-100%);
}

nav .background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

nav .animated-square {
  position: absolute;
  border: 2px solid var(--text);
  border-radius: 0.25rem;
  opacity: 0.15;
  animation: moveAndRotate var(--duration) linear infinite;
}

@keyframes moveAndRotate {
  0% {
    transform: translate(var(--x), var(--y)) rotate(0deg);
  }

  25% {
    transform: translate(var(--x2), var(--y)) rotate(90deg);
  }

  50% {
    transform: translate(var(--x2), var(--y2)) rotate(180deg);
  }

  75% {
    transform: translate(var(--x), var(--y2)) rotate(270deg);
  }

  100% {
    transform: translate(var(--x), var(--y)) rotate(360deg);
  }
}

nav .menu-overlay {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

nav .content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

nav .menu-container {
  padding: 5vh 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

nav .menu-items {
  list-style: none;
  margin-bottom: 5vh;
}

nav .menu-item {
  margin-bottom: 2vh;
  transform: translateX(-20px);
  opacity: 0;
  animation: fadeInRight 0.5s ease forwards;
}

nav .menu-item:nth-child(1) {
  animation-delay: 0.1s;
}

nav .menu-item:nth-child(2) {
  animation-delay: 0.2s;
}

nav .menu-item:nth-child(3) {
  animation-delay: 0.3s;
}

nav .menu-item:nth-child(4) {
  animation-delay: 0.4s;
}

nav .menu-item:nth-child(5) {
  animation-delay: 0.5s;
}

nav .menu-item:nth-child(6) {
  animation-delay: 0.6s;
}

nav .menu-item:nth-child(7) {
  animation-delay: 0.7s;
}

nav .menu-link {
  color: #F0F0F0;
  text-decoration: none;
  font-size: 4vh;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

nav .menu-link:hover {
  color: var(--text);
}

nav .menu-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text);
  transition: width 0.3s ease;
}

nav .menu-link:hover::after {
  width: 100%;
}

nav .menu-link.hovered::after {
  animation: lineDisappear 0.3s ease forwards;
}

@keyframes lineDisappear {
  0% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

nav .separator {
  width: 100%;
  height: 2px;
  background-color: var(--text);
  opacity: 0.3;
  margin: 3vh 0;
  position: relative;
  overflow: hidden;
}

nav .separator::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -100%;
  width: 50%;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(204, 11, 13, 1), transparent);
  animation: scanHorizontal 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(204, 11, 13, 0.8);
}

@keyframes scanHorizontal {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

nav .cta-container {
  margin-top: 2vh;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards 0.8s;
}

nav .cta-button {
  background-color: transparent;
  border: 2px solid var(--text);
  color: #F0F0F0;
  padding: 0.5rem 3rem;
  font-size: 2vh;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 0.25rem;
  outline: none;
  margin-top: 10px;
  z-index: 1;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  line-height: 1.4;
}

nav .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--text);
  transition: all 0.3s ease;
  z-index: -1;
}

nav .cta-button:hover::before {
  left: 0;
}

nav .cta-button.exit::before {
  left: 0;
  animation: exitRight 0.3s ease forwards;
}

@keyframes exitRight {
  0% {
    left: 0;
    width: 100%;
  }

  100% {
    left: 100%;
    width: 0;
  }
}

nav .cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.02),
      transparent);
  animation: slowReflect 4.5s ease-in-out infinite;
}

@keyframes slowReflect {

  0%,
  70% {
    left: -120%;
  }

  85%,
  100% {
    left: 100%;
  }
}

nav .social-icons {
  position: absolute;
  bottom: 5vh;
  right: 8vw;
  display: flex;
  gap: 15px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards 1s;
}

nav .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(204, 11, 13, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

nav .social-icon:hover {
  transform: translateY(-5px);
  background-color: rgba(204, 11, 13, 0.2);
}

nav .social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
}

nav .logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: Megrim;
  white-space: nowrap;
}

nav .nav-www {
  transform: translateY(10%);
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;

}

nav .nav-wA,
nav .nav-w0,
nav .nav-wB {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  padding: 0.25vw;
  z-index: 5;
}

nav .nav-wB {
  transform: translateX(-50%) translateY(-50%) rotate(120deg);
  transform-origin: center 1px;
}

nav .nav-wA {
  transform: translateX(-50%) translateY(-50%) rotate(-120deg);
  transform-origin: center 1px;
}

.nav-red-line-logo {
  position: absolute;
  width: 23.5%;
  height: 2px;
  border-bottom: 2px solid var(--accent);
  z-index: 1;
}

.nav-red-line1 {
  transform: translateX(0) translateY(-11.85vw);
}

.nav-red-line2 {
  transform: translateX(3.1vw) translateY(-6.6vw) rotate(120deg);
}

.nav-red-line3 {
  transform: translateX(-3.1vw) translateY(-6.6vw) rotate(-120deg);
}

nav .mobile-logo {
  display: none;
}

nav .vertical-separator {
  position: absolute;
  left: 50%;
  top: 10%;
  height: 80%;
  width: 2px;
  /* Augmenté l'épaisseur */
  background-color: var(--text);
  opacity: 0.3;
  z-index: 1;
  display: none;
  overflow: hidden;
  /* Pour cacher le dépassement */
}

nav .vertical-separator::after {
  content: '';
  position: absolute;
  top: -30%;
  /* Commence avant le haut de la ligne */
  left: 0;
  width: 100%;
  /* Exactement la largeur de la ligne */
  height: 30%;
  /* Hauteur du scan */
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: scanVertical 4s ease-in-out infinite;
  /* Ralenti à 4s */
}

@keyframes scanVertical {

  0%,
  20% {
    top: -30%;
  }

  80%,
  100% {
    top: 100%;
    /* Va jusqu'au bas et au-delà */
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Responsive styles */
@media (min-width: 992px) {
  nav .menu-overlay {
    flex-direction: row;
  }

  nav .logo-container {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  nav .logo {
    font-size: 14vw;
  }

  nav .desktop-logo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 1;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  nav .mobile-logo {
    display: none;
  }

  nav .content-wrapper {
    width: 50%;
  }

  nav .menu-container {
    padding: 0 8vw;
  }

  nav .vertical-separator {
    display: block;
  }
}

@media (max-width: 991px) {
  nav .menu-overlay {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  
  nav .desktop-logo {
    display: none;
  }

  nav .mobile-logo {
    display: block;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    font-size: 20vw;
    transform: translate(-50%, -65%);
    z-index: 0;
  }

  nav .nav-wA,
  nav .nav-w0,
  nav .nav-wB {
    opacity: 0.01;
  }

  .nav-red-line-logo {
    position: absolute;
    width: 20.5%;
    height: 2px;
    border-bottom: 2px solid var(--accent);
    opacity: 0.1;
    z-index: 1;
  }

  .nav-red-line1 {
    transform: translateX(0) translateY(-16.85vw);
  }

  .nav-red-line2 {
    transform: translateX(4.4vw) translateY(-9.25vw) rotate(120deg);
  }

  .nav-red-line3 {
    transform: translateX(-4.4vw) translateY(-9.25vw) rotate(-120deg);
  }

  nav .vertical-separator {
    display: none;
  }

  nav .menu-items {
    text-align: center;
  }

  nav .cta-container {
    display: flex;
    justify-content: center;
  }

  nav .social-icons {
    position: relative;
    right: 0;
    margin: 2rem auto;
  }
}

/* BOUTONS */


.btn {
  font-family: var(--title-font);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  /* align-items:flex; */
  align-items: center;
  /* margin-right: 1rem; */
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .btn {
    padding: 1rem 2rem;
  }
}

@media (min-width: 640px) {
  .btn {
    font-size: 1.25rem;
  }
}

.btn svg {
  margin-left: 0.75rem;
  width: 18px;
  height: 18px;
}


/* BTN PRIMARY */

.btn-primary {
  background-color: var(--accent);
  color: var(--text);
  border: none;
  position: relative;
  z-index: 1;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  /* point de départ hors du bouton */
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 5px 10px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::after {
  animation: shineVertical 0.6s ease-in 0.4s forwards;
}

@keyframes shineVertical {
  0% {
    left: -40%;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}


/* BTN SECONDARY */

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 2px solid rgba(240, 240, 240, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  z-index: -1;
}

.btn-secondary:hover {
  border-color: rgba(240, 240, 240, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(240, 240, 240, 0.1);
}


/* BTN TERTIARY */

.btn-tertiary {
  background-color: var(--accent);
  color: var(--text);
  border: 1px solid var(--accent);
}

.btn-tertiary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  /* point de départ hors du bouton */
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
}

.btn-tertiary:hover {
  background-color: transparent;
  transform: translateY(-2px);
  border-color: var(--text);
  box-shadow: 10px 10px 20px -10px rgba(255, 255, 255, 0.15);
}

.btn-tertiary:hover::after {
  animation: shineVertical 0.6s ease-in 0.4s forwards;
}

@keyframes shineVertical {
  0% {
    left: -40%;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}


/* BTN QUATERNARY */

.btn-quaternary {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 0.25rem;
  font-family: var(--title-font);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 1rem;
  /* Push to bottom of flex container */
}

.btn-quaternary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-quaternary:hover {
  color: var(--text);
}

.btn-quaternary:hover::before {
  left: 0;
}

/* ============================================================================
    FOOTER
   ============================================================================ */

footer {
  background: linear-gradient(to bottom, #050505, var(--bg-color));
  border-top: 1px solid var(--accent);
  color: var(--text);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer .container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1400px) {
  footer .container {
    max-width: 1800px;
  }
}

footer .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (min-width: 640px) {
  footer .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  footer .grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

footer .first-column {
  margin-right: 0;
}

@media (min-width: 1194px) {
  footer .first-column {
    margin-right: 5vw;
  }
}

footer .logo {
  font-family: 'Megrim', cursive;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

footer .description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #9ca3af;
}

footer .social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

footer .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(204, 11, 13, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

footer .social-icon:hover {
  background-color: rgba(204, 11, 13, 0.3);
  transform: translateY(-5px);
}

footer .social-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

footer .heading {
  font-family: var(--title-font);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

footer .heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

footer .links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .links li {
  margin-bottom: 0.75rem;
}

footer .links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

footer .links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

footer .links a:hover {
  color: #F1F1F1;
}

footer .links a:hover::after {
  width: 100%;
}

footer .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

footer .contact-icon {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--accent);
}

footer .contact-text,
footer .contact-text a {
  color: #9ca3af;
  line-height: 1.5;
}

footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  footer .bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

footer .copyright {
  color: #9ca3af;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  footer .copyright {
    margin-bottom: 0;
  }
}

footer .bottom-links {
  display: flex;
  gap: 1.5rem;
}

footer .bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .bottom-links a:hover {
  color: #F1F1F1;
}

footer .newsletter {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

footer .newsletter-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

footer .newsletter-description {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

footer .newsletter-form {
  display: flex;
  margin-top: 1rem;
}

footer .newsletter-input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.75rem 1rem;
  color: #F1F1F1;
  border-radius: 0.25rem 0 0 0.25rem;
  outline: none;
  transition: background-color 0.3s ease;
}

footer .newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

footer .newsletter-button {
  background-color: var(--accent);
  color: #F1F1F1;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0 0.25rem 0.25rem 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

footer .newsletter-button:hover {
  background-color: #a00a0c;
}

footer .newsletter-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

footer .newsletter-message {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  display: none;
}

footer .newsletter-message.success {
  color: #10b981;
}

footer .newsletter-message.error {
  color: #ef4444;
}

footer .hours {
  margin-top: 1.5rem;
}

footer .hours-list {
  color: #9ca3af;
  font-size: 0.9rem;
}

footer .hours-day {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0.50rem;
}

footer .hours-day span {
  margin-bottom: 0.25rem;
}

footer .contact-link {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

footer .contact-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

footer .contact-link:hover {
  color: #F1F1F1;
}

footer .contact-link:hover::after {
  width: 100%;
}

body {
    cursor: none;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-animation li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    border-radius: 0.25rem;
}

.bg-animation li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.bg-animation li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.bg-animation li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.bg-animation li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bg-animation li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.bg-animation li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.bg-animation li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.bg-animation li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.bg-animation li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.bg-animation li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* ----- Main background ----- */

main {
    background: linear-gradient(215deg, var(--text), cyan);
    background-size: 100% 100%;
    animation: gradientAnimation 15s ease infinite;
}



/* ----- Effet parallaxe amélioré ----- */

.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* transform: translateZ(-1px) scale(2); */
}

.parallax-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Styles pour les animations */
.fade-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}