@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
*{
  margin: 0;
  padding: 0;
  
}

.navbar-logo {
  height: 90px;         /* augmenté depuis 50px */
  max-width: 100%;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-size: 13px; /* taille réduite */
  font-weight:500;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: 'Manrope', sans-serif;
  line-height: 100%;
}

.btn.btn-danger {
  font-size: 0.85rem;
  padding: 6px 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}
.btn-danger{
  background-color: #ff0909;

}

/* État après scroll */
.navbar.scrolled {
  background-color: white !important;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-link {
  color: black !important;
  
}

.navbar.scrolled .btn-danger {
  background-color: #ff0909;
  color: white !important;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 45px;       /* reste raisonnable en mobile */
  }
}


.section1 {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0)),
              url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* ou fixed si tu veux effet paralaxe */
  color: white;
  padding: 100px 0;
}
.section1 h4.lead {
  font-size: 2rem; /* environ 17-18px */
  font-weight: 200;
  color: white;
  margin-bottom: 1rem
 
}

.sbg-tag {
  color: #ffffff;
  font-weight: 800;              /* un peu gras */
  background-color: rgba(255, 255, 255, 0.146); /* très léger fond translucide */
  padding: 6px 16px;
  border-radius: 20px;           /* bords bien arrondis */
  font-size: 1.5rem;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}





@media (max-width: 768px) {
  .section1 h1 {
    font-size: 1.8rem;
  }
}

.teaching-section {
  background-color: #fff;
}

.video-card {
  position: relative;
  border-radius: 16px; /* arrondi sur toute la carte */
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}



.video-thumbnail {
  position: relative;
  border-radius: 0; /* image prend tout, mais on va l’ajuster via img */
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 0; /* on le gère via .video-card */
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(198, 195, 195, 0.26);
  padding: 16px;
  border-radius: 50%;
  font-size: 20px;
}



.btn-dark {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-section {
  background-color: #000;
  position: relative;
}

.founder-img {
  border-radius: 20px;
  max-width: 100%;
}

.founder-cross {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.join-footer {
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 3px;
}
.section-heading {
  background-color: #fff;
}
.letter-space{
  letter-spacing: 20px;
}
.footer-custom {
  background-color: #ffffff;
}

.footer-logo {
  max-width: 100px;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
}

.footer-custom h6 {
  font-size: 0.9rem;
  color: #333;
}

.footer-custom ul li {
  margin-bottom: 0.5rem;
}

.footer-custom input::placeholder {
  color: #999999;
  font-size: 0.9rem;
}

.icone{

  color: #000;
}

.text-muted{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* --- Responsive Hero Section Text --- */
@media (max-width: 768px) {
  .section1 h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  .section1 h4.lead {
    font-size: 1.1rem;
    text-align: center;
  }

  .sbg-tag {
    font-size: 1rem;
  }
}

/* --- Founder Section Responsive Text --- */
@media (max-width: 768px) {
  .founder-section h3 {
    text-align: center;
    font-size: 1.5rem;
  }

  .founder-section p {
    text-align: justify;
    font-size: 0.95rem;
  }

  .founder-section .btn {
    display: block;
    margin: auto;
  }
}

/* --- Fix pour le footer colonne newsletter sur mobile --- */
@media (max-width: 768px) {
  .footer-custom .col-md-5 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-custom form {
    flex-direction: column;
  }

  .footer-custom input {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-custom button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom .icone {
    font-size: 14px;
  }
}
