/* --- STYLE GÉNÉRAL --- */
body {
  font-family: 'Poppins', sans-serif;
  color: #f8f8f8 !important;
  background-color: #212529;
  scroll-behavior: smooth;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

h1, h2 {
  font-weight: 600;
  color: #d4af37;
}

.text-orange{
  color: #d4af37 !important;
}

p {
  color: #DDD;
}
label{
  color: #DDD;
}

.text-shadow-dark {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.9);
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- NAVBAR --- */
.navbar {
  background-color: #212529;
  transition: background-color 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(0,0,0,1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.navbar .nav-link {
  color: #f8f8f8 !important;
  font-weight: 500;
}
.navbar .nav-link:hover {
  color: #d4af37 !important;
}
.navbar-brand {
  color: #d4af37 !important;
  font-weight: 700;
  letter-spacing: 1px;
}

.bg-dark{
	background-color : #212529 !important;
}

.bg-light{
  background-color: #343a40  !important;
}
/* --- HERO --- */
#hero {
  height: 100vh;
  background: url('/bab/bab-hero-img-website.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#hero h1 {
  color: #fff;
}
#hero p {
  color: #ddd;
}
#hero .btn-primary {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #000;
}
#hero .btn-primary:hover {
  background-color: #b99429;
  border-color: #b99429;
}


#contact {
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)),  url('/bab/img/a-diverse-team-celebrating-a-birthday-at-the-offic-2023-12-06-15-42-27-utc.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#ml {
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)),  url('/bab/img/Diversite-en-entreprise.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* --- CARTES --- */
.card {
  background-color: #01182a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.card h5 {
  color: #fff;
}
.card p {

}

/* --- BOUTONS --- */
.btn-primary {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #000;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: #b99429;
  border-color: #b99429;
  color: #000;
}
.btn-outline-dark, .btn-outline-light {
  border-color: #d4af37;
  color: #d4af37;
}
.btn-outline-dark:hover, .btn-outline-light:hover {
  background-color: #d4af37;
  color: #000;
}



/* --- FOOTER --- */
footer {
  background-color: #212529;
  color: #bbb;
  font-size: 0.9rem;
}
footer a {
  color: #d4af37;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* --- ANIMATION D'ENTRÉE (OPTIONNELLE) --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.bg-contact {
  position: relative;
  background: url('/bab/img/contact-bab.webp') center/cover no-repeat;

}

.shadow-light{
  box-shadow: 0 1px 10px rgba(255,255,255,0.9);
}
.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  color: white;
  font-size: 5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.btn-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: #d4af37; /* ton doré BAB */
}

a{
  color:#d4af37 ;
}


