@import url('https://fonts.googleapis.com/css2?family=Micro+5&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&family=Orelega+One&display=swap');

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  padding: 0 0px;
}
main, .header-content {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto; /*  auto L and R centre le bloc */
  padding: 20px;
  box-sizing: border-box; /* Pour que le padding ne casse pas la largeur */
}



section {
  margin: 0px;
}

section h1 {
  color: #313236;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;
}

section p {
  line-height: 1.6;
  color: #555;
}

section ul {
  line-height: 1.8;
  color: #555;
}

footer {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

/*FONT*/

.jersey-10-regular {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 1em;
  margin: 0px;
}
.hero {
  /* Haut | Gauche-Droite | Bas */
  padding: 30px 30px 10px;
  box-sizing: border-box;
  text-align: left;
}

@media (orientation: portrait) {
  .hero {
    /* On force : 10vw haut, 0 côtés, 5vh bas */
    padding: 10vw 20px 5vh !important; 
  }
}

/*ANIMATE*/

/* The container acts like a mask */
.animateByLetter {
  overflow: hidden; 
  display: block; /* Ensures the mask works correctly */
  opacity: 0;
  visibility: hidden;
}

#header-placeholder {
    opacity: 0;
    visibility: hidden;
}

.displayItem {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none;
}

/* Individual letter style */
.char {
  display: inline-block;
  transform: translateY(110%); /* Hidden below the baseline */
  /* No opacity, no blur */
}

@keyframes letterAppear {
  to {
    transform: translateY(0);
  }
}


/*DIV*/

.title {
  display: flex;
  justify-content: center;  /* horizontal */
  align-items: center;      /* vertical */
  padding: 5px;
}


/*NAVIGATION*/
.header-placeholder{
  width: 100%;
  display: flex;
  justify-content: center;
}

/* La bande qui prend toute la largeur de l'écran */
.main-header {
  background-color: #ebb914;
  width: 100%;
  display: flex;
  justify-content: center; /* Centre le contenu interne */
}


/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #999999;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}


.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.cookie-content a {
  color: #999999;
  text-decoration: underline;
}

.cookie-content a:hover {
  color: #ffffff;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ebb914;
  color: white;
}

.btn-primary:hover {
  background-color: #ffe07b;
}

.btn-secondary {
  background-color: #276ca8;
  color: white;
}

.btn-secondary:hover {
  background-color: #8fb4d8;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .btn {
    flex: 1;
  }
}

