
body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #bdfaff;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  padding: 1rem;
  max-width: 600px;
  width: 100%;
}

.image-wrapper {
  width: 100%;
  max-width: 400px;
  height: 50%; /* Ajuste la hauteur visible */
  overflow: hidden;
  
  margin: 0 auto;
  background-color: #bdfaff;
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

.hero-img {
  max-width: 100%;
  height: auto;
  
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
  
  object-fit: cover;

  }
.title_img{
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  justify-content: center;



}

.maschot_title{
  width: 50%;
}





h1 {
  font-size: 2.5rem;
  margin: 1rem 0 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}



.background-logos {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image: url('maschot2.png');
  background-repeat: repeat;
  background-size: 120px;
  animation: slideLogos 60s linear infinite;
  z-index: -1;
  opacity: 0.08; /* Léger effet watermark */
}

@keyframes slideLogos {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ff69b4;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff1493;
}

.buy_button{
  margin-top: 10px;
}

.socials {
  margin-top: 2rem;
}

.socials img {
  width: 32px;
  margin: 0 10px;
  transition: transform 0.2s;
}

.socials img:hover {
  transform: scale(1.2);
}

.float {
  animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
