@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=Manrope:wght@200..800&display=swap');
:root{
    --teal:#007889;
    --teal-dark:#016b79;
    --yellow:#f9b429;
    --yellow-dark:#e09b00;
  }
  
.navbar-nav .nav-link {
    font-size: 13px; /* taille réduite */
    font-weight:600;
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: 'Manrope', sans-serif;

  }

  .navbar-nav .nav-link.color-yellow {
    color: #f6c71e !important;
  }
  .btn.btn-danger {
    font-size: 0.85rem;
    padding: 6px 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
  }
  .btn-danger{
    background-color: #ff0909;
  
  }
  
  
  @media (max-width: 768px) {
    .navbar-logo {
      height: 45px;       /* reste raisonnable en mobile */
    }
  }
.navbar-logo {
    height: 90px;         /* augmenté depuis 50px */
    max-width: 100%;
    object-fit: contain;
  }
  .hero-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  }

  .hero {
    margin-top: 150px;
  }
.hero-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px;
  }
  
  .hero-img {
    width: 100%; 
    height: auto;
    display: block;
  }
  
  .hero-text h1 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 45px;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    
  }
  
  .description-section {
    background-color: #fff;
  }
  
  .description-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
  }

  .cta-banner{
    min-height: 240px;
    background: var(--teal);
    color:#fff;
    position:relative;
    overflow:hidden;
    padding:4rem 0;
    border-radius: 0 0 16px 16px;
    
  }
  
  /* petites formes décoratives */
  .cta-banner::before,
  .cta-banner::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background: var(--teal-dark);
    border-radius:50%;
    opacity:.25;
  }
  .cta-banner::before{
    bottom:-60px;
    left:15%;
  }
  .cta-banner::after{
    top:-80px;
    right:10%;
    width:300px;
    height:300px;
    opacity:.18;
  }
  
  /* Titre */
  .cta-title{
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    margin:0;
  }
  
  /* Bouton */
  .btn-cta{
    background: var(--yellow);
    color:#000;
    padding:.9rem 2.2rem;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    transition: all .2s ease;
  }
  .btn-cta:hover{
    background: var(--yellow-dark);
    color:#000;
    transform: translateY(-2px);
  }
  
  /* Responsive (optionnel) */
  @media (max-width:576px){
    .cta-banner{
      padding:3rem 0;
      border-radius:0;
    }
  }

  .btn-danger{
    background-color: #ff0909;
  
  }
  .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 MOBILE FIXES POUR PAGE ÉCOUTE SPIRITUELLE */

@media (max-width: 768px) {

  @media (max-width: 991.98px) {
    .navbar-collapse {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100%;
      width: 250px;
      background-color: white;
      transition: right 0.3s ease-in-out;
      padding-top: 20px;
      box-shadow: -2px 0 5px rgba(0,0,0,0.1);
      z-index: 1050;
    }
  
    .navbar-collapse.show {
      right: 0;
    }
  
    /* Bouton de fermeture */
    .btn-close {
      background-color: transparent;
      border: none;
      font-size: 1.5rem;
    }
  }
  
  
    /* Les liens à l'intérieur du menu mobile */
    .navbar-nav .nav-link {
      color: #000 !important;
      text-align: left;
      padding: 10px 0;
      font-weight: 600;
      border-bottom: 1px solid #eee;
    }
  
    .navbar-nav .nav-link:last-child {
      border-bottom: none;
    }
  
    /* Bouton de connexion dans le menu mobile */
    .navbar-nav .btn-danger {
      width: 100%;
      margin-top: 1rem;
    }
  }
  
  /* Hero Section */
  .hero-img-container {
    margin: 10px;
    border-radius: 10px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    left: 10px;
    bottom: 10px;
  }

  .hero-gradient-left {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  }

  /* Description Section */
  .description-section h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .description-section p {
    font-size: 15px;
    padding: 0 10px;
  }

  /* CTA */
  .cta-banner {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    padding: 3rem 1rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .btn-cta {
    width: 100%;
    font-size: 1rem;
  }

  /* Footer newsletter form */
  .footer-custom form {
    flex-direction: column;
  }

  .footer-custom input {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-custom button {
    width: 100%;
  }

  /* Footer bottom */
  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom .icone {
    font-size: 14px;
  }


@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .cta-banner {
    padding: 2rem 1rem;
  }
}
/* 🎯 RESPONSIVE MOBILE FIXES POUR PAGE ÉCOUTE SPIRITUELLE */

@media (max-width: 768px) {

  /* Navbar */
  .navbar-nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-nav .nav-link {
    font-size: 12px;
    margin-bottom: 6px;
    text-align: center;
  }

  /* Hero Section */
  .hero-img-container {
    margin: 10px;
    border-radius: 10px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    left: 10px;
    bottom: 10px;
  }

  .hero-gradient-left {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  }

  /* Description Section */
  .description-section h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .description-section p {
    font-size: 15px;
    padding: 0 10px;
  }

  /* CTA */
  .cta-banner {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
    padding: 3rem 1rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .btn-cta {
    width: 100%;
    font-size: 1rem;
  }

  /* Footer newsletter form */
  .footer-custom form {
    flex-direction: column;
  }

  .footer-custom input {
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-custom button {
    width: 100%;
  }

  /* Footer bottom */
  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom p,
  .footer-bottom .icone {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .cta-banner {
    padding: 2rem 1rem;
  }
}

  