/* Couleurs du logo */
:root {
  --primary-color: #003366; /* Bleu sombre */
  --secondary-color: #fdb913; /* Jaune */
  --text-color: #444;
}

/* Section générale */
section {
  padding: 60px 0;
}
h2 {
  color: var(--primary-color);
  font-weight: bold;
}

/* Navbar */
.navbar-nav a{
font-size: 18px;
text-transform: uppercase;
font-weight: bold;
}
.navbar-brand img {
  height: 50px;
}
.navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: bold;
}
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}
.dropdown-menu {
  background-color: var(--primary-color);
}
.dropdown-item {
  color: white;
}
.dropdown-item:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.w-100{
height: 100vh;
}

.navbar-toggle{
padding: 1px 5px;
font-size: 18px;
line-height: 0.3;
background: #fff;
}

/* Carrousel */
.carousel{
  margin-top: 80px;
}
.carrosel-item{
height:60vh;
min-height: 300px;
}
.carousel-caption{
left: 0;
position: absolute;
width: 400px;
bottom: 70px;
background-color: var(--primary-color);
}
.carousel-caption h5{
font-size: 25px;
font-family: Franklin Gothic, Franklin Gothic Medium, Arial, Helvetica, sans-serif;
letter-spacing: 2px;
margin: auto;
color: #fff;

}
.carousel-caption p{
margin: auto;
font-size: 18px;
}

/* Who We Are */
.who-we-are {
  background-color: #f9f9f9;
}
.who-we-are p {
  color: var(--text-color);
}

/* Our Services */
.services-section .card {
  border: none;
  transition: transform 0.3s ease;
}
.services-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Opening Hours */
.opening-hours {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 20px 0;
}
footer a {
  color: var(--secondary-color);
  text-decoration: none;
}

@media only screen and (max-width: 767px){
  .navbar-nav{
    text-align: center;
    background: rgba(0,0,0,0.5);
  }
  .carousel-item img {
    height:50vh;
  }
  .carousel-caption{
    width: auto;
    bottom: 50px;
  }
  .carousel-caption h5{
    font-size: 10px;
  }
}

/* Transition */
.team-section .team-member:hover {
  transform: scale(1.1);
  transition: transform 0.5s;
}
.partners-section img:hover {
  transform: scale(1.1);
  transition: transform 0.5s;
}

/* Annimation */
.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  visibility: visible;
}
