.white{
    background-color: #fff;
}
body {
    font-family: "Libre Baskerville", serif;
    font-style: normal;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6,
button,
.btn,
.nav-link {
    font-family: "Libre Baskerville", serif;
    font-style: normal;
}
button,
.btn,
.nav-link {
    font-family: "Libre Baskerville", serif;
    font-style: normal;
    font-size: 16px;

}
h1{
    font-size: 48px;
    font-weight: 700;
}
.ctn-main{
    background-color: rgba(0, 0, 0, 1);
}
.hero-header {
  position: relative;
  height: 90vh; /* ajuste selon ton besoin */

  background-image: url('../assets/images/ton-image.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Overlay sombre */
.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* intensité du noir */
  z-index: 1;
}

/* Mettre le contenu au-dessus de l’overlay */
.hero-header .container {
  position: relative;
  z-index: 2;
}

/* Responsive ajustement */
@media (max-width: 991px) {
  .hero-header {
    text-align: center;
  }
}

/* NAVBAR GÉNÉRALE */
.custom-navbar {
  background: transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
}

/* LOGO */
.custom-navbar .logo {
  height: 45px;
}

/* TITRE DU SITE */
.site-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

/* MENU */
.navbar-nav {
  align-items: center;
}


/* ITEMS */
.nav-item {
}

/* LIENS */
.nav-link {
  color: #fff !important;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

/* HOVER (effet ligne en dessous) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #0d6efd; /* bleu bootstrap */
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* HOVER couleur */
.nav-link:hover {
  color: #0d6efd !important;
}


/* NAVBAR AU SCROLL */
.navbar-scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 10px 0;
  backdrop-filter: blur(5px);
}
.not-front-page{
    background-color: rgba(0, 0, 0, 0.6);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #0d6efd;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.main-page-description{
    background-color: black;
    text-align: center;
    color: white;
    font-style: italic;
    padding:50px 50px;
    font-weight: 400;
    letter-spacing: 1px;
}

.partenaires {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  padding: 60px 0;
}
.partenaire-item {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.partenaire-item img {
    max-width: 140px;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garde les proportions */
}
.ctn-Partenaire{
    padding: 70px 0;
    text-align: center;
}
.ctn-communication{
    padding: 70px 20px;
    text-align: center;
}
.partenaire-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .partenaires {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .partenaires {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SECTION */
.contact-section {
  background: #0a0a0a;
  min-height: 40vh;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* TITRE */
.contact-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* SOUS-TITRE */
.contact-subtitle {
  font-size: 18px;
  color: #cfcfcf;
  margin-bottom: 20px;
}

/* TEXTE */
.contact-section p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LIENS */
.contact-section a {
  color: #00bfff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-section a:hover {
  text-decoration: underline;
}
/* FOOTER */
.site-footer {
  background: #2f3136;
  padding: 40px 0;
  color: #aaa;
}

/* Ligne séparatrice */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

/* Menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}

.footer-menu li a {
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.footer-menu li a:hover {
  color: #fff;
}

/* Crédit */
.footer-credit {
  font-size: 13px;
  margin: 0;
}

.footer-credit a {
  color: #bbb;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .footer-menu {
    justify-content: center;
    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}
.page-banner {
    background: linear-gradient(45deg,rgba(29,66,138,1) 0,rgb(95,94,117) 100%);
    text-align: center;
    color: white;
    padding: 50px 20px;
    
}
.page-banner h1{
  padding-top: 75px;
  padding-bottom: 0px;
}


/* SECTION */
.partners-page {
  background: #f8f9fa;
}

/* ROW */
.partner-row {
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}

/* IMAGE */
.partner-img {
  max-height: 180px;
  object-fit: contain;
  transition: 0.3s;
}

.partner-img:hover {
  transform: scale(1.05);
}

/* TITRE */
.partner-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXTE */
.partner-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .partner-row {
    text-align: center;
  }

  .partner-row .col-md-7 {
    margin-top: 20px;
  }
}
.partner-row:nth-child(even) {
  background: #ffffff;
}

.partner-row:nth-child(odd) {
  background: #f1f1f1;
}

/* PAGE EVENEMENT */
/* PAGE */
.events-page {
  background: #f8f9fa;
  min-height: 575px;
}

/* TITRE */
.page-title {
  font-size: 42px;
  font-weight: 700;
}

/* CARD */
.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.event-image {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

/* CONTENT */
.event-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.event-content a{
  margin-bottom:20px
}

/* DATE */
.event-date {
  text-transform: lowercase;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 20px;
}

/* TITRE */
.event-title {
  font-size: 24px;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.event-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}
/* NAV TABS */
.nav-tabs {
  border-bottom: none;
  gap: 15px;
}

.nav-tabs .nav-link {
  border: none;
  background: gray;
  color: #333;
  padding: 12px 25px;
  border-radius: 50px;
  transition: 0.3s;
}

.nav-tabs .nav-link.active {
  background: #0d6efd;
  color: #fff;
}

.nav-tabs .nav-link:hover {
  background: #0b5ed7;
  color: #fff !important;
}
.event-image{
    width:100%;
    border-radius:12px;
    object-fit:cover;
}

.event-infos p{
    margin-bottom:12px;
    font-size:1.05rem;
}

.event-content{
    margin-top:50px;
    line-height:1.8;
}
.single-event{
    padding-top:100px !important;
    min-height: 850px;
}
#service-map{
    height:700px;
    width:100%;
    border-radius:15px;
    overflow:hidden;
}

.service-list{
    height:700px;
    overflow-y:auto;
    padding-right:10px;
}

.service-item{
    padding:20px;
    margin-bottom:15px;
    border:1px solid #e5e5e5;
    border-radius:10px;
    cursor:pointer;
    transition:all .2s ease;
}

.service-item:hover{
    transform:translateY(-2px);
}

.service-item.active{
    border-color:#0d6efd;
    background:#f8f9fa;
}

.service-item h5{
    margin-bottom:10px;
}

#location-search{
    position:sticky;
    top:0;
    z-index:10;
}
.committee-member {
    padding: 20px;
}

.committee-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f1f1f1;
}

.committee-poste {
    font-weight: 600;
    color: #666;
}

.committee-member a {
    text-decoration: none;
    word-break: break-word;
}
.committee-section {
    background-color: #f8f9fa;
}
.shop-coming-soon {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 2rem;
}

.shop-coming-soon h1 {
    font-weight: 700;
}

.shop-coming-soon p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.description-map {
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
    text-align: center;

}
.page-banner {
    position: relative;

    text-align: center;
    color: white;

    padding: 50px 20px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.65)
  );

    z-index: 1;
}
.page-banner h1 {
    position: relative;
    z-index: 2;

    padding-top: 75px;
    padding-bottom: 0;
}
/* PAGE devenir membre */
.simple-content-page {
    background-color: #f8f9fa;
    min-height: 60vh;
    padding: 80px 0;
}

.content-card {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.content-card h2 {
    margin-bottom: 25px;
}

.content-card p,
.content-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.content-card ul,
.content-card ol {
    padding-left: 25px;
}

.content-card a {
    color: #0d6efd;
    text-decoration: none;
}

.content-card a:hover {
    text-decoration: underline;
}

.content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .content-card {
        padding: 30px;
    }

    .content-card p,
    .content-card li {
        font-size: 16px;
    }

}
.membership-button .btn {
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: #fff;
}

.membership-button .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.glink {
    color: white;
    text-decoration: none;
}