
.neonate-hero {
  position: relative;
  color: white;
  text-align: center;
  padding: 120px 5%;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neonate-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/neonate2026/71D4FEC1-3E04-406E-9482-B58AFF7C38AE.jpg") center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.1);
  z-index: 1;
}

.mascara-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/17jpmascara.JPG") center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.1);
  z-index: 1;
}

.neonate-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 119, 182, 0.6) 0%,
    rgba(8, 175, 209, 0.6) 100%
  );
  z-index: 2;
}

.neonate-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
}

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

.neonate-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.neonate-hero-content p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  opacity: 0.95;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.neonate-intro {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.neonate-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #0077b6, #08afd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
}

.neonate-intro h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #08afd1);
  border-radius: 2px;
}

.neonate-intro p {
  color: #495057;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 30px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.event-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.meta-item {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.1);
  text-align: center;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.meta-item:hover {
  transform: translateY(-5px);
}

.meta-item strong {
  display: block;
  font-size: 1.2rem;
  color: #0077b6;
  margin-top: 5px;
  font-weight: 700;
}

.featured-image {
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* optionnel, joli */
}

.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0077b6 0%, #08afd1 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.sponsors-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.section-header .section-label {
  display: inline-block;
  background: linear-gradient(135deg, #0077b6, #08afd1);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h3 {
  font-size: 2.2rem;
  color: #0077b6;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}

.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.sponsor-placeholder {
  width: 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
}

.sponsor-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Lightbox ready (no gallery yet) */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .neonate-hero {
    padding: 80px 20px;
    min-height: 45vh;
  }

  .event-meta {
    flex-direction: column;
    gap: 20px;
  }

  .meta-item {
    min-width: auto;
  }

  .featured-image img {
    margin: 40px 10px;
    border-radius: 12px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .neonate-hero {
    padding: 60px 15px;
  }

  .neonate-intro {
    padding: 60px 15px;
  }

  .neonate-intro h2 {
    font-size: 2rem;
  }
}
