/* header */
.bg-purple {
    background-color: #f7fff7;
  }
  
  .nav-link {
    transition: color 0.3s, background-color 0.3s;
    box-shadow: #000;
    color: #1a535c;
  }
   
  .nav-link:hover {
    color: #000;
    background-color: #4ecdc4;
    border-radius: 5px;
  }





  /* Fonts */
  /* Styles pour les titres */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #1a535c; /* Couleur violette personnalisée */
    text-transform: uppercase;
    font-weight: 600;
}

/* Couleur spécifique pour chaque niveau de titre (optionnel) */
h1 {
    color: #1a535c;
}

h2 {
    color: #1a535c;
}

h3 {
    color: #1a535c;
}

h4 {
    color: #1a535c;
}

h5 {
    color: #1a535c;
}

h6 {
    color: #1a535c;
}






/* Zone de flotaison */
.hero {
    background: url('img/accueil.webp') center/cover no-repeat;
    height: 100vh;
  }
  
  .countdown-container {
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    border-radius: 10px;
    padding: 30px;
  }
  
  .countdown-container h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .timer span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a535c;
  }
  
  .timer p {
    margin: 0;
    color: #1a535c;
  }
  
  .btn-primary {
    font-weight: bold;
    padding: 12px 25px;
  }

  .bouton{
    background-color: #1a535c;
    color: white;
    text-decoration: none;
    border-radius: 20px;
  }
  .bouton:hover{
    background-color: #ffffff;
    color: #1a535c;
    border: 2px solid #1a535c;
    text-decoration: none;
    border-radius: 20px;
  }









/* Line UP */

.card-custom {
    background-color: #1a535c; 
    color: white; 
  }
  .card-custom ul {
    padding-left: 0; 
  }





  .custom-btn {
    background-color: #ffffff;
    color: #1a535c;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .custom-btn:hover {
    background-color: #1a535c;
    color: #ffffff;
    border-color: #ffffff;
  }





/* Galerie de photos */
.photo-gallery h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .photo-gallery img {
    transition: transform 0.3s ease;
  }
  
  .photo-gallery img:hover {
    transform: scale(1.05); /* Effet d'agrandissement au survol */
  }







/* Billeterie */

.custom-purple-table {
    background-color: #1a535c; 
    color: #fff; 
    border-color: #fff; 
  }
  
  .custom-purple-table th {
    background-color: #4ecdc4; 
    color: #fff; 
  }
  
  .custom-purple-table td {
    background-color: #1a535c; 
    border: 1px solid #fff; 
    color: #fff; 
  }
  
  .custom-purple-table tr:nth-child(even) td {
    background-color: #4ecdc4; 
  }
  
  .custom-purple-table tr:nth-child(odd) td {
    background-color: #1a535c; 
  }
  
  .custom-purple-table td, 
  .custom-purple-table th {
    vertical-align: middle; 
    text-align: center; 
    color: #fff; 
  }





/* Contact */
form .btn{
    background-color: #1a535c;
    color: white;
}
form .btn:hover{
    background-color: #ffffff;
    color: #1a535c;
    border-color: #1a535c;
}
.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
iframe {
    width: 100%;
    height: 100%;
    border: 0;
}







/* Footer */
footer {
    background-color: #1a535c;
    font-size: 0.9rem;
    width: 100%;
    color: white;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.578);
  
  }
  
  footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease; 
  }
  
  footer a:hover {
    color: #4ecdc4; 
  }
  
  footer ul {
    padding: 0;
  }
  
  footer ul li {
    margin-bottom: 0.5rem;
  }
  
  footer .bi {
    vertical-align: middle;
  }