body {
  padding-top: 56px;
}

.hero {
  height: 100vh;
  background: url('../images/PHOTO-2025-07-09-18-47-44.jpg') center/cover no-repeat;
  position: relative;
}
.blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/R.jpg') center/cover no-repeat;
  color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99999;
  font-size: 18px;
  padding: 20px;
}

.blocker a {
  color: green;
  font-weight: bold;
  text-decoration: underline;
  margin-left: 5px;
}


.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.social-fixed {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-fixed .circle {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-fixed .circle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.social-fixed .circle img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* ✅ Adaptation tablette */
@media screen and (max-width: 768px) {
  .social-fixed {
    right: 10px;
    gap: 10px;
  }

  .social-fixed .circle {
    width: 40px;
    height: 40px;
  }
}

/* ✅ Adaptation mobile (petit écran) */
@media screen and (max-width: 480px) {
  .social-fixed {
    right: 8px;
    gap: 8px;
  }

  .social-fixed .circle {
    width: 32px;
    height: 32px;
  }
}


/* navbar */

.navbar-brand {
  font-weight: bold;
  color: orange !important;
}

.btn-outline-light {
  border-color: orange;
  color: orange;
  
}

.btn-outline-light:hover {
  background-color: orange;
  color: white;
  border-color: orange;
}

.card img {
  height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.kids-events {
    padding: 60px 20px;
    margin: 0 auto;
    color: #333;
    width: 90%;
}

.kids-events .header-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.3);
    font-size: 28px;
    margin-bottom: 20px;
}

.kids-events h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
}

.kids-events h1 .highlight {
    position: relative;
    display: inline-block;
}

.kids-events h1 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px; /* ajuste la hauteur du soulignement */
    width: 100%;
    height: 8px; /* épaisseur de la bande orange */
    background-color: orange;
    z-index: -1; /* place la bande derrière le texte */
}

.kids-events .description {
    font-size: 18px;
    line-height: 1.6;
}


 .contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.contact-box {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.contact-box h4 {
  margin-bottom: 5px;
}

.contact-hours {
  text-align: center;
  font-weight: 700;
  margin-bottom: 8px;
  color: green;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  .contact-box {
    text-align: center;
  }
}

      /* Section globale */
.video-section {
  padding: 50px 0;
  background: white;
  color: white;
  text-align: center;
}

/* Conteneur vidéo centré */
.video-container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Vidéo qui prend toute la largeur */
.video-content {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Texte descriptif en dessous (ou tu peux le placer en overlay si tu veux) */
.video-caption {
  padding: 20px;
  background: white
}

.video-caption h3 {
  margin: 10px 0;
  font-size: 24px;
}

.video-caption p {
  margin: 0;
  font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .video-caption h3 {
    font-size: 20px;
  }

  .video-caption p {
    font-size: 14px;
  }
}


.tabs {
  display: flex;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tab {
  margin: 0 10px;
  padding: 10px 20px;
  background: #eee;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.tab.active {
  background: orange;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tab-content {
  background: #fff;
  padding: 30px 20px;
  display: none;
  border-radius: 6px;
}

.tab-content.active {
  display: block;
}

.partner-row,
.info-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  gap: 40px; /* ou 60px si tu veux encore plus d'espace */
  max-width: 1000px; /* optionnel, pour limiter la largeur totale */
  margin: 0 auto;
}

.partner-item,
.info-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 80px); /* 3 par ligne, ajuste les -80px selon ton gap */
  max-width: 180px;
}

.partner-circle {
  width: 200px;
  height: 200px;
  background: #f9f9f9;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.partner-circle:hover {
  transform: scale(1.05);
}

.partner-circle img {
  max-width: 80%;
  max-height: 80%;
}

.partner-name {
  margin-top: 10px;
  color: orange;
  letter-spacing: 2px;
  font-size: 14px;
}

.info-item {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.info-item:hover {
  transform: translateY(-5px);
}

.info-item h4 {
  color: #ff8000;
  margin-bottom: 10px;
}

.info-item p {
  font-size: 16px;
  color: #333;
}


.bloc-actualite {
  text-align: center;
  padding: 40px 20px;
}

.bloc-actualite h2 {
  color: #ff6600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.actu-container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.actu-container img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block;
  object-fit: cover;
}

.actu-description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 20px;
  text-align: left;
}

.actu-description h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
}

.actu-description p {
  margin: 0;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .actu-container {
    max-width: 90%;
  }

  .actu-description h3 {
    font-size: 18px;
  }

  .actu-description p {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .actu-description h3 {
    font-size: 16px;
  }

  .actu-description p {
    font-size: 12px;
  }
}
.instagram-webview .actu-container img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block;
}



/* Styles spécifiques pour la webview Instagram */
body.instagram-webview .social-fixed {
  position: static !important;
  transform: none !important;
  margin: 15px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  top: auto !important;
  right: auto !important;
  width: auto !important;
  z-index: auto !important;
}

body.instagram-webview .social-fixed .circle {
  width: 40px !important;
  height: 40px !important;
}

body.instagram-webview .social-fixed .circle img {
  width: 70% !important;
  height: 70% !important;
}

/* Adapter la section actualité */
body.instagram-webview .bloc-actualite .actu-container {
  max-width: 100% !important;
  padding: 0 15px !important;
  box-shadow: none !important;
}
