/*
 * Globals
 */
   .navbar {
        background-color: #ff8000; /* Couleur orange */
      }
      .navbar .nav-link {
        color: white !important;
        font-weight: bold;
        text-align: center; /* Alignement du texte */
      }
      .navbar img {
        height: 70px;
        width: auto;
      }
      .navbar .container-fluid {
        display: flex;
        align-items: center; /* Centrer verticalement */
        justify-content: space-between; /* Espace entre logo, liens et sélecteur */
      }
      
      .navbar .nav-masthead {
        display: flex;
        justify-content: center; /* Centrer horizontalement les liens */
        flex: 1; /* Prend tout l'espace disponible entre le logo et le sélecteur */
      }
      
      .navbar .ms-auto {
        margin-left: auto; /* Garde le sélecteur aligné à droite */
      }

      /* Section Cover */
      .cover {
        height: 100vh; /* Toute la hauteur visible */
        background: url('../images/virocHP.jpg') center/cover no-repeat;
        margin-left: 0px;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
      }

      .cover h1 {
        font-size: 4rem;
        font-weight: bold;
      }
      .cover p {
        font-size: 1.25rem;
        margin-top: 1rem;
      }

      /* Section Viroc France */
      .viroc-section {
        background-color: white;
        padding: 3rem 1rem;
        text-align: center;
      }

      .viroc-section h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #333;
      }

      .viroc-section p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.6;
      }

/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */


/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: white;
  border-bottom-color: #fff;
}
.nav-items {
  text-align: center;
}
.nav-masthead {
  margin: 0 auto; /* Centrer horizontalement */
  display: flex; /* Alignement des enfants horizontalement */
  justify-content: left; /* Centre les liens */
}
        #contactButton {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            background-color: #ff8000;
            color: white;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }
        #contactButton i {
          color: white;
          z-index: 1000;
        }

        #contactButton:hover {
            background-color: #0056b3;
        }

        #contactBubble {
            display: none;
            position: fixed;
            bottom: 100px;
            right: 20px;
            z-index: 1000;
            background-color: white;
            color: black;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            padding: 15px;
            width: 250px;
        }

        #contactBubble p {
            margin: 0;
        }
        .divider {
            width: 60%;
            height: 1px;
            background: #ccc;
            margin: 20px auto;
        }
 .color-cell {
      display: flex;
      align-items: center;
    }
    .color-cell img {
      width: 150px;
      height: 100px;
      margin-right: 10px;
      border-radius: 5px;
    }
    .expanded-row {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
       .expanded-row img {
      width: 100%;
      height: 100px;
      object-fit: cover; 
      object-position: center;
      border-radius: 5px;
    }

/* Styles généraux */


.accordion {
  border: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  background: #f8f8f8;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
}

.accordion-content {
  display: none;
  padding: 15px;
  background-color: #fff;
}

.accordion-content img {
  max-width: 100%;
  margin-bottom: 10px;
}

.accordion-header.active {
  background-color: #e0ddd9;
}

.arrow {
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}
footer {
  background-color: #222; /* Couleur sombre */
  color: #fff; /* Texte blanc */
  width: 100%;
  margin: 0; /* S'assurer qu'il n'y a pas de marges */
  padding: 0; /* Supprimer tout padding global non désiré */
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #ccc;
}

footer hr {
  opacity: 0.5;
}

  
  