/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: url('../img/solidarité.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header {
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}
header h1.logo {
  color: #E53935;
  font-size: 1.8em;
  font-weight: bold;
}
header img.logo {
  height: 90px;   
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #E53935;
}
.btn-cta {
  background: #E53935;
  color: white !important;
  padding: 8px 18px;
  border-radius: 4px;
}
.btn-cta:hover {
  background: #B71C1C;
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('../img/hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}
.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
}
.hero a {
  padding: 15px 35px;
  background: #FFB300;
  color: #333;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
}
.hero a:hover {
  background: #FFA000;
}

/* SECTIONS GENERALES */
section {
  padding: 70px 8%;
}
section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: white;
  font-size: 2em;
  font-weight: bold;
}

/* VALUES */
.values .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}
.card {
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  background: white;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
.card i {
  margin-bottom: 15px;
  color: #E53935;
}
.card h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
}

/* NEWS / ACTIONS */
.highlights {
  background: #f9f9f9;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}
.news-card {
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
}
.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-card .content {
  padding: 15px;
}
.news-card a{
  text-decoration:none;
}

/* CALL TO ACTION */
.call-to-action {
  background: #E53935;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.call-to-action .btn-big {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  background: #FFB300;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.2em;
}
.call-to-action .btn-big:hover {
  background: #FFA000;
}

/* FOOTER */
footer {
  background: #333;
  color: #ddd;
  text-align: center;
  padding: 25px 15px;
}
footer a {
  color: #FFB300;
  margin: 0 8px;
  text-decoration: none;
}
footer a:hover {
  color: white;
}
footer i {
  margin: 0 10px;
  color: #FFB300;
}
footer i:hover { color: white; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2em;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ------- FORMULAIRE DE DON --------- */
form.donation {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

form.donation label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
  color: #444;
}

form.donation input,
form.donation select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border 0.3s;
}

form.donation input:focus,
form.donation select:focus {
  border-color: #E53935;
  outline: none;
}

form.donation input[type=submit] {
  background: #E53935;
  color: white;
  border: none;
  font-weight: bold;
  padding: 14px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}

form.donation input[type=submit]:hover {
  background: #B71C1C;
}

/* ------- CARTES ADHÉSION --------- */
.membership-options {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  margin: 40px 0;
}

.card-option {
  background: white;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-option:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

.card-option h3 {
  color: #E53935;
  margin-bottom: 10px;
}

.card-option p {
  font-size: 0.95em;
  color: #555;
}

.card-option .price {
  font-size: 1.4em;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
}

/* ------- QR CODE --------- */
.qrcode-box {
  margin: 40px auto;
  text-align: center;
  background: #fafafa;
  padding: 20px;
  border: 1px dashed #ccc;
  border-radius: 8px;
}
.qrcode-box a {
  font-weight: bold;
  color: #E53935;
  text-decoration: none;
}

/* SLIDER STYLES */
.highlights {
  padding: 60px 0;
  background: #f8f9fa;
}

.highlights h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.newsSwiper {
  width: 100%;
  padding: 20px 50px 60px 50px !important;
  margin: 0 auto;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 350px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-card .content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card h3 {
  color: #E53935;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.news-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #E53935 !important;
  background: white;
  border-radius: 50%;
  width: 45px !important;
  height: 45px !important;
  margin-top: -22px !important;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #E53935;
  color: white !important;
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Pagination */
.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #E53935;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .newsSwiper {
    padding: 20px 20px 60px 20px !important;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    margin-top: -18px !important;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px !important;
  }
}

.btn-big {
  display: inline-block;
  background: #E53935;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-big:hover {
  background: #c62828;
  transform: translateY(-2px);
}
/* Styles pour le calendrier */
    .calendar-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    #calendar {
      max-width: 100%;
      margin: 20px 0;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .events-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }
    
    .event-mini {
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    
    .event-mini:hover {
      transform: translateY(-5px);
    }
    
    .event-mini img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .event-mini .info {
      padding: 15px;
    }
    
    .event-mini h3 {
      margin: 0 0 10px 0;
      color: #333;
    }
    
    .event-mini p {
      margin: 5px 0;
      color: #666;
    }
    
    .event-mini a {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 16px;
      background: #E53935;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease;
    }
    
    .event-mini a:hover {
      background: #c62828;
    }
    
    /* Personnalisation FullCalendar */
    .fc-event {
      cursor: pointer;
    }
    
    .fc-event:hover {
      opacity: 0.8;
    }
    /* ----------- PAGE EVENEMENT (DÉTAIL) ----------- */
.event-card {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
  overflow: hidden;
}

.event-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.event-card .content {
  padding: 25px;
}

.event-card h2 {
  color: #E53935;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.event-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.95em;
  color: #555;
}

.event-details span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-details i {
  color: #E53935;
}

/* Liste des événements passés / à venir (option) */
.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}
.event-mini {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform .2s;
}
.event-mini:hover {
  transform: translateY(-5px);
}
.event-mini img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.event-mini .info {
  padding: 15px;
}
.event-mini h3 {
  font-size: 1.1em;
  color: #E53935;
}

/* ======================
   PAGES CONTACT & FAQ
   ====================== */

/* Hero petit pour les pages internes */
.hero-small {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.9), rgba(198, 40, 40, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
    color: white;
    text-align: center;
    padding: 80px 0 60px 0;
    margin-bottom: 40px;
}

.hero-small .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-small .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Contact */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h3,
.contact-form h3 {
    color: #E53935;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #E53935;
    margin-right: 20px;
    margin-top: 5px;
    min-width: 50px;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 5px;
}

.contact-item a {
    color: #E53935;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item small {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

/* .social-links a {
    background: #E53935;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
} */

.social-links a:hover {
    background: #c62828;
    transform: translateY(-2px);
}

/* Formulaire de contact */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #E53935;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.faq-quick {
    background: white;
    padding: 40px 0;
    text-align: center;
}

.faq-quick h3 {
    color: #E53935;
    margin-bottom: 15px;
}

.faq-quick a {
    color: #E53935;
    text-decoration: none;
    font-weight: 600;
}

/* Page FAQ */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-search {
    text-align: center;
    margin-bottom: 50px;
}

.faq-search input {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
    text-align: center;
}

.faq-search input:focus {
    outline: none;
    border-color: #E53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Documents officiels */
.documents-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.documents-section h3 {
    color: #E53935;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.document-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.document-card:hover {
    transform: translateY(-5px);
    border-color: #E53935;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.document-card i {
    font-size: 3rem;
    color: #E53935;
    margin-bottom: 20px;
}

.document-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.document-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-download {
    background: #E53935;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #c62828;
    transform: scale(1.05);
}

/* FAQ Content */
.faq-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.faq-content > h3 {
    color: #E53935;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h4 {
    color: #E53935;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.faq-item {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #E53935;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #E53935;
    color: white;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #E53935;
}

.faq-question:hover i {
    color: white;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer p,
.faq-answer ul {
    margin: 20px 0;
    line-height: 1.6;
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: #E53935;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-contact {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.faq-contact h3 {
    color: #E53935;
    margin-bottom: 20px;
}

/* ======================
   PAGE MÉDIAS
   ====================== */

.medias-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.media-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #ddd;
    color: #333;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #E53935;
    color: white;
    border-color: #E53935;
    transform: translateY(-2px);
}

.events-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-media-block {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.event-title {
    color: #E53935;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.event-title small {
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.event-description {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.media-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.media-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.media-item:hover img {
    transform: scale(1.1);
}

.media-overlay,
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(229, 57, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    font-size: 2rem;
}

.media-item:hover .media-overlay,
.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.video-link {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.video-link:hover {
    background: #E53935;
}

.video-link a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Modal vidéo */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.video-close:hover {
    color: #E53935;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.no-media,
.error-media {
    text-align: center;
    padding: 100px 20px;
    color: #666;
}

/* ======================
   PAGE REJOINDRE TEMPORAIRE
   ====================== */

.coming-soon-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.icon-animation {
    margin-bottom: 30px;
}

.icon-animation i {
    font-size: 4rem;
    color: #E53935;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.sliding-text {
    font-size: 2.5rem;
    color: #E53935;
    margin-bottom: 30px;
    overflow: hidden;
}

.sliding-text span {
    display: inline-block;
    animation: slideText 8s linear infinite;
}

@keyframes slideText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.description {
    margin-bottom: 50px;
}

.description p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.temp-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.temp-option {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.temp-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.temp-option i {
    font-size: 2.5rem;
    color: #E53935;
    margin-bottom: 20px;
}

.temp-option h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.temp-option p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-cta h3 {
    color: #E53935;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-signup {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter-signup h4 {
    color: #E53935;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #E53935;
}

.newsletter-form button {
    background: #E53935;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #c62828;
}

/* ======================
   RESPONSIVE
   ====================== */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .media-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .event-title {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sliding-text {
        font-size: 1.8rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-small .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-small .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .temp-options {
        grid-template-columns: 1fr;
    }
}

/* ======================
   ALBUMS - MISE À JOUR
   ====================== */

/* Statistiques médias */
.media-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
    color: #333;
}

.stat-item i {
    font-size: 2.5rem;
    color: #E53935;
    margin-bottom: 10px;
    display: block;
}

.stat-item span {
    font-size: 2rem;
    font-weight: bold;
    color: #E53935;
    display: block;
}

.stat-item small {
    color: #666;
    font-size: 0.9rem;
}

/* Albums gallery */
.albums-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.album-block {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.album-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.album-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.album-title {
    color: #E53935;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.album-title i {
    margin-right: 10px;
}

.album-counts {
    display: flex;
    gap: 10px;
}

.count-badge {
    background: #E53935;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.count-badge:nth-child(2) {
    background: #2196F3;
}

.album-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.album-description small {
    color: #999;
    font-size: 0.9rem;
}

.album-description small i {
    margin-right: 5px;
}

.album-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.photos-section,
.videos-section {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.photos-section h4,
.videos-section h4 {
    color: #E53935;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.videos-section h4 i {
    color: #2196F3;
}

.no-media-album {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.no-albums,
.error-albums {
    text-align: center;
    padding: 100px 20px;
    color: #666;
}

/* Responsive pour albums */
@media (max-width: 768px) {
    .media-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .album-title {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .album-counts {
        justify-content: center;
        width: 100%;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .stat-item span {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .album-block {
        padding: 20px;
    }
    
    .album-title {
        font-size: 1.4rem;
    }
    
    .photos-section,
    .videos-section {
        padding: 15px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
}

