/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body 
a {
  text-decoration: none;
  color: inherit;
}

/* ========== HEADER FIXE ========== */
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #4bfd51;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.navigation {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ========== LOGO + TITRE ========== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
.titre {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
}

/* ========== MENU DESKTOP ========== */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu > a,
.dropdown-btn {
  position: relative;
  padding: 8px 12px;
  font-weight: 500;
  transition: color 0.3s;
  color: white;
}
.menu > a:hover,
.dropdown-btn:hover {
  color: #2e7d32;
}

/* ========== DROPDOWN ========== */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  display: none;
  min-width: 180px;
  z-index: 999;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px;
  color: #444;
  transition: background 0.3s;
}
.dropdown-menu a:hover {
  background-color: #5cb85c;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* ========== LOGIN BOUTON ========== */
.login {
  background: #4bfd51;
  color: #eee;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background 0.3s;
}
.login:hover {
  background: white;
}

/* ========== MENU BURGER (mobile) ========== */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #2e7d32;
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #4bfd51;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }
  .menu.active {
    display: flex;
  }
  .dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    border: none;
    background: #4bfd51;
  }
  .dropdown-menu a {
    padding-left: 20px;
  }
  .menu-toggle {
    display: block;
    color: #2e7d32;
  }
}



hr{
  width: 100px; /* Remplacez 50px par la largeur souhaitée */
  margin: 0 auto; /* Centre la ligne horizontalement */
  border: none; 
  height: 3px; /* Définit la hauteur de la ligne */
  background-color: #4bfd51; /* Définit la couleur de la ligne (bleu) */
}

/* debut du content */




 

/* Responsive pour mobile */
@media (max-width: 600px) {
    .mission {
        font-size: 22px;
    }

    .mission::before,
    .mission::after {
        width: 50px;
    }

    .container {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }
}

/* fin duConteneur des cartes */




/*footer*/

/* Footer Général */
.footer {
    background-color: #004d40; /* Vert foncé pour refléter l'environnement */
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap; /* Responsive */
    justify-content: space-between;
  }
  
  .footer-container > div {
    flex: 1;
    margin: 10px;
  }
  
  .footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer p, .footer ul {
    font-size: 14px;
  }
  
  .footer ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer ul li {
    margin-bottom: 5px;
  }
  
  /* Liens sociaux */
  .footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out; /* Ajoute une transition pour la couleur */
  }
  
  .footer-social a:hover {
    transform: scale(1.2);
    color: #4bfd51; /* Vert clair au survol */
  }
  
  
  /* Section bas de page */
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
  }
  
  /* Responsive */
  @media (max-width:768px) {
    .footer-container {
      flex-direction: column; /* Les sections s'empilent sur petits écrans */
      text-align: center; /* Centrer le texte */
    }
  }
 /*fin footer*/ 

 /*debut de page contact*/

 /* Styles généraux */

  .athamm-container {
    width: 80%;
    margin: auto;
    overflow: hidden;
  }
  
  .mission1{
    margin-top: 100px;
    text-align: center;
    font-size: 26px; 
     
    color: #fff;
  }

  /* Section de contact */
  .contact-section {
    padding: 20px;
    margin-bottom: 15px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .contact-section .athamm-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alignement en haut */
  }
  
  /* Formulaire de contact */
  .contact-form {
    width: 50%;
    padding-right: 20px;
  }
  
  .contact-form h2 {
    color: #5cb85c;
    margin-bottom: 10px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .envoyer {
    background-color: #5cb85c;
    color: white;
    padding: 10px 15px;
    border: solid;
    border-radius: 16px;
    cursor: pointer;
  }

  .envoyer {
    background:#4bfd51;
    color: #fff;
}

  .envoyer:hover {
    background: white;  /*boutton reservation*/
    color: #4bfd51;
}
  
  /* Informations de contact */
  .contact-info {
    width: 45%;
  }
  
  .contact-info h2 {
    color: #5cb85c;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    margin-bottom: 10px;
  }
  
  /* Liens sociaux */
  .social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #333;
    font-size: 20px;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
  }
  
  .social-links a:hover {
    transform: scale(1.2);
    color: #5cb85c;
  }
  

  
  /* Responsive */
  @media (max-width: 768px) {
    .athamm-container {
      width: 90%;
      flex-direction: column;
    }
  
    .contact-form, .contact-info {
      width: 100%;
      padding-right: 0;
    }
  }

  /*fin de la page contact*/

  /*debut de la page service*/


  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .athamms-container {
      width: 90%;
    }
  
    .subscription-plans .athamms-container {
      flex-direction: column;
      align-items: center;
    }
  
    .plan {
      width: 100%;
      margin: 20px 0;
    }
  }
  
  /* fin de la page service*/
  
  




:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --card-bg: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --secondary: #00cc66;
}


/* Section Info */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.section.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
    padding: 0 40px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.section-text.animated {
    transform: translateY(0);
    opacity: 1;
}

.section-image {
    flex: 1;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.section-image.animated {
    transform: scale(1);
    opacity: 1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.3s ease;
    text-align: center;
}

h2:hover::after {
    width: 100%;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
}
.coche::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

@media (max-width: 992px) {
    .section, .section.reverse {
        flex-direction: column;
        padding: 50px 5%;
    }
    
    .section-text {
        padding: 0;
        margin-bottom: 30px;
    }
    
    .section-image {
        max-width: 100%;
    }
}

/* Section Équipe */
.team-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c3e50;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
}

.team-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 220px;
    min-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.photo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2ecc71;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.2em;
    color: #34495e;
    margin: 10px 0 5px;
    line-height: 1.3;
}

.member-position {
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9em;
    line-height: 1.3;
}

.contact-infor a {
    text-decoration: none;
    color: #2980b9;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-infor a:hover {
    color: #1abc9c;
}

/* Responsive pour les écrans moyens */
@media (max-width: 1200px) {
    .team-card {
        width: 200px;
        min-width: 200px;
        padding: 15px;
    }
    
    .photo-container {
        width: 90px;
        height: 90px;
    }
    
    .member-name {
        font-size: 1.1em;
    }
    
    .member-position {
        font-size: 0.85em;
    }
}

/* Responsive pour tablettes */
@media (max-width: 992px) {
    .team-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .team-card {
        width: 180px;
        min-width: 180px;
    }
    
    .photo-container {
        width: 80px;
        height: 80px;
    }
    
    .member-name {
        font-size: 1em;
    }
    
    .member-position {
        font-size: 0.8em;
    }
}

/* Responsive pour mobiles */
@media (max-width: 768px) {
    .team-container {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px 10px;
        gap: 12px;
    }
    
    .team-card {
        width: 160px;
        min-width: 160px;
        padding: 12px;
    }
    
    .photo-container {
        width: 70px;
        height: 70px;
    }
    
    .member-name {
        font-size: 0.9em;
    }
    
    .member-position {
        font-size: 0.75em;
    }
    
    .contact-infor i {
        font-size: 2em !important;
    }
}

/* Pour les très petits écrans */
@media (max-width: 480px) {
    .team-card {
        width: 140px;
        min-width: 140px;
        padding: 10px;
    }
    
    .photo-container {
        width: 60px;
        height: 60px;
    }
    
    .member-name {
        font-size: 0.85em;
    }
    
    .member-position {
        font-size: 0.7em;
    }
}

/* Section Documents */
.documents {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.statut {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statut:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.statut h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0ef858;
}

.statut p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.telechargement {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0ef858, #2e7d32);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(14, 248, 88, 0.3);
}

.telechargement:hover {
    background: transparent;
    color: #0ef858;
    border: 2px solid #0ef858;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 248, 88, 0.4);
}

.telechargement a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pdf {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.telechargement:hover .pdf {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .documents {
        padding: 40px 15px;
        gap: 30px;
    }
    
    .statut {
        padding: 20px;
    }
    
    .statut h2 {
        font-size: 1.6rem;
    }
    
    .statut p {
        font-size: 1rem;
    }
    
    .telechargement {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .pdf {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .telechargement {
        width: 100%;
        max-width: 300px;
    }
    
    .telechargement a {
        flex-direction: column;
        text-align: center;
    }
}

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .activity {
        flex-direction: column;
    }
    
    .activity-img {
        min-height: 200px;
        width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .card h2, .activities h2, .team-section h2 {
        font-size: 1.5rem;
    }
}