/* Réinitialisation et styles globaux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #f1f1f1;
    line-height: 1.6;
  }
  
  /* Navigation */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #f1f1f1;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #e63946;
  }
  
  /* Section Hero */
  .hero {
    height: 100vh;
    background: url('hero-image.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-attachment: fixed; /* Fixe l'image lors du scroll */
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Superposition sombre */
    filter: blur(8px); /* Applique un flou à l'image */
    z-index: 1; /* Assure que la superposition est au-dessus de l'image mais en dessous du texte */
  }
  
  .hero-content {
    position: relative;
    z-index: 2; /* Texte au-dessus de l'overlay */
    max-width: 800px;
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #d62828;
  }
  
  /* Sections */
  .section {
    padding: 80px 20px;
  }
  
  .section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
  }
  
  /* Portfolio - Galerie */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 10px;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.1);
  }
  
  /* Camion - Présentation du camion */
  .camion-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .camion-image, .camion-description {
    flex: 1;
    padding: 20px;
  }
  
  .camion-image img {
    width: 100%;
    border-radius: 10px;
  }
  /* Conteneur du bouton centré */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px; /* Espace entre la galerie et le bouton */
  }
  
  /* Style du bouton Voir plus */
  .voir-plus-btn {
    padding: 10px 25px;
    background-color: transparent;  /* Fond transparent */
    color: #f1f1f1;  /* Texte blanc mais plus doux */
    border: 2px solid #f1f1f1;  /* Bordure subtile blanche */
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;  /* Transition douce */
  }
  
  .voir-plus-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);  /* Légère ombre blanche au survol */
    color: #e63946;  /* Changer la couleur du texte au survol */
    border-color: #e63946;  /* Changer la couleur de la bordure */
  }
  
/* Agenda - Liste des événements */
.agenda-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .agenda-content ul {
    list-style: none;
    margin-top: 30px;
  }
  
  .agenda-content li {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }
  
  /* Réduction de l'espace entre Agenda et RDV */
  .agenda {
    padding-bottom: 40px; /* Moins d'espace en bas de l'agenda */
  }
  
  .rdv-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #111;
    color: #f1f1f1;
    padding: 40px 20px 80px;  /* Réduction du padding-top si besoin */ 
    /* text-align n'est plus nécessaire ici, car le contenu est en flex */
  }
  
  /* Section Prendre un RDV */
  .rdv-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    width: 100%;
    gap: 20px;
  }
  
  .rdv-text {
    flex: 1;
    padding: 20px;
    text-align: left;
  }
  
  .rdv-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .rdv-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn-container {
    display: flex;
    gap: 10px;
  }
  
  .phone-btn, .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .phone-btn:hover, .btn:hover {
    background-color: #d62828;
  }
  
  .rdv-image {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .rdv-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  


  
  /* Pied de page */
  footer {
    background-color: #222;
    padding: 20px;
    text-align: center;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .social-links {
    margin-top: 10px;
  }
  
  .social-links a {
    display: inline-block;
    margin: 0 15px;
    color: #f1f1f1;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #e63946;
  }
  
  /* Classe pour les icônes */
  .social-icon {
    font-size: 1.8rem; /* Taille de l'icône */
  }
  
  .social-icon i {
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover i {
    transform: scale(1.2); /* Effet d'agrandissement au survol */
  }
  


/* PORFOLIO !!!!!!!! */
/* PORFOLIO !!!!!!!! */
/* PORFOLIO !!!!!!!! */

/* Section Hero pour Portfolio */
.hero-portfolio {
  height: 100vh;
  background: url('hero-portfolio.jpg') no-repeat center center/cover; /* Utilise ton image dédiée */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-attachment: fixed; /* Fixe l'image lors du scroll */
}

.hero-portfolio::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Superposition sombre */
  filter: blur(8px); /* Applique un flou à l'image */
  z-index: 1; /* Overlay placé entre l'image et le contenu */
}

.hero-portfolio .hero-content {
  position: relative;
  z-index: 2; /* Texte au-dessus de l'overlay */
  max-width: 800px;
  padding: 20px;
}

.hero-portfolio h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-portfolio p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-portfolio .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-portfolio .btn:hover {
  background-color: #d62828;
}


/* Agenda - Liste des festivals */
.agenda-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0; /* 40px d'espace en haut, ajustable selon besoin */
}

.festival-item {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.festival-item:hover {
  transform: scale(1.02);
}

.festival-item img {
  width: 100%;
  height: auto;
  display: block;
}

.festival-details {
  padding: 15px;
  text-align: center;
}

.festival-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.festival-details p {
  font-size: 1rem;
  color: #ccc;
}


/* Section Contact Info */
.contact-info {
  text-align: center;
  padding: 50px 20px;
  background: #1a1a1a;
  color: white;
}

.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.contact-box {
  background: #222;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.contact-box i {
  font-size: 30px;
  color: #e63946;
  margin-bottom: 10px;
}

.contact-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-box .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-box .btn:hover {
  background-color: #d62828;
}

#rdv-telephone {
  display: flex;
  justify-content: center; /* Centrage horizontal */
  align-items: center;     /* Centrage vertical */
  min-height: 100vh;       /* Prend toute la hauteur de la fenêtre */
  flex-direction: column;  /* Aligne les éléments en colonne */
  text-align: center;      /* Centrage du texte */
}

/* Responsive mobile */
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero-content p {
    text-align: center;
    font-size: 1rem;
  }

  .gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .camion-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rdv-content {
    flex-direction: column;
    text-align: center;
  }

  .rdv-image img {
    width: 100%;
    height: auto;
    margin-top: 15px;
  }

  .btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .calendar ul {
    padding-left: 20px;
  }

  footer .footer-content {
    text-align: center;
    padding: 20px;
  }

  .social-links {
    justify-content: center;
    margin-top: 10px;
  }
}

/* Cacher le burger par défaut */
.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Responsive pour téléphone */
@media screen and (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: #111;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 10px;
    z-index: 10;
  }

  .nav-links.active {
    display: flex;
  }

  nav {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
  }
}
