/* HTML & BODY */
html, body {
  height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  background-color: #007bff;
  color: white;
  text-align: center;
}

/* NAVIGATION */
nav a {
  margin: 0 15px;
  text-decoration: solid;
  width: 100%;
}

/* MAIN CONTAINER */
.content-container{
  background-color: white; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.2);
  padding: 20px; 
}

/* FOOTER */
.footer {
  background-color: #007bff;
  color: white;
  text-align: center;
  margin-top: auto;
  position:relative;
  width: 100%;
  bottom: 0px;
}

/* STAR BACKGROUND EFFECT */
@keyframes pan {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

#star-container {
  background: radial-gradient(rgb(var(--light-gold-rgb)), rgb(var(--dark-gold-rgb))); 
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  width: 100%;
}

#star-pattern {
  background-image: url("Star+Pattern+3.svg");
  background-size: 10%;  
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
  height: 100%;
  width: 100%;
  min-width: 1200px;
  opacity: 0.10;
  animation: pan 180s linear infinite;
  will-change: background-position;
}

#star-gradient-overlay {
  background: radial-gradient(circle, transparent 75%, rgb(var(--dark-gold-rgb)));
  position: absolute;
  inset: 0;
  opacity: 0.9;
  z-index: 2;
}



/* Uniformiser la taille des images */
.fixed-image {
  height: 50%;
  width: 50%;
  object-fit: contain;

  margin-left: auto;
  margin: auto;
  scale: 1.80;
}

/* hauteur uniforme pour les cartes */
.card {
  flex-direction: column;
  height: 100%;
  padding: 0px;
  background-color: white; 
  border-radius: 8px; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Ajoute une marge en bas de chaque carte */
}

.card-body {
  flex-direction: column;
  gap: 10px; 
}
.ima{
  height: 40%;
  display: grid;
  grid-template-columns: 1fr;
}