 /* Page d'acceuil */

 #hero {
     position: relative;
     height: 85vh;
     min-height: 600px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: url('img/accueil/header-bg.jpg') no-repeat center center/cover;
     background-attachment: fixed;
     background-position: center top;
     background-color: #333;
 }

 @supports (-webkit-touch-callout: none) {
     #hero {
         background-attachment: scroll;
     }
 }

 #hero .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(41, 37, 36, 0.75);
     mix-blend-mode: multiply;
 }

 #hero::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.4);
     pointer-events: none;
 }

 #hero .content {
     position: relative;
     z-index: 10;
     max-width: 800px;
     width: 90%;
     padding: 0.5rem;
     text-align: center;
 }

 #hero .hero-logo-text {
     display: inline-flex;
     flex-direction: column;
     line-height: 1;
     margin-bottom: 2rem;
     color: #ffffff;
 }

 #hero .hero-logo-text img {
     width: 13rem;
     height: auto;
 }

 #hero .content p {
     font-size: 1.25rem;
     color: #F5F5F4;
     font-weight: 300;
     margin-bottom: 2.3rem;
     line-height: 1.8;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
 }

 #hero .content p strong {
     color: #ffffff;
     font-weight: 600;
 }

 #hero .buttons {
     display: flex;
     gap: 1rem;
     justify-content: center;
     flex-wrap: wrap;
 }

 #hero .buttons a {
     padding: 1rem 2rem;
     font-weight: 600;
     border-radius: 4px;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     white-space: nowrap;
     cursor: pointer;
 }

 #hero .buttons a.primary {
     background-color: var(--primary-color);
     color: #ffffff;
     border: 2px solid var(--primary-color);
 }

 #hero .buttons a.primary:hover {
     background-color: var(--primary-hover);
     border-color: var(--primary-hover);
 }

 #hero .buttons a.outline {
     border: 2px solid rgba(255, 255, 255, 0.5);
     color: #ffffff;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(5px);
 }

 #hero .buttons a.outline:hover {
     border-color: #ffffff;
     background: rgba(255, 255, 255, 0.2);
     color: #ffffff;
 }

 #missions-teaser header {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 4rem auto;
 }

 #missions-teaser header p {
     font-size: 1.1rem;
     color: var(--text-medium);
     font-weight: 500;
 }

 section .divider {
     width: 80px;
     height: 4px;
     background-color: var(--primary-color);
     margin: 0 auto 1.5rem auto;
     border-radius: 2px;
 }

 .home-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 3rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .home-article {
     background: var(--bg-card);
     border: 1px solid rgba(0, 0, 0, 0.05);
     border-radius: 12px;
     padding: 2.5rem;
     box-shadow: 0 10px 25px -5px rgba(28, 25, 23, 0.1);
     transition: transform 0.3s;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .home-article:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px -10px rgba(28, 25, 23, 0.15);
 }

 .home-article .icon {
     width: 60px;
     height: 60px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.8rem;
     margin-bottom: 1.5rem;
 }

 .home-article .icon.orange {
     background-color: #FFEDD5;
     color: var(--accent-orange);
 }

 .home-article .icon.blue {
     background-color: #E7E5E4;
     color: #57534E;
 }

 .home-article h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
 }

 .home-article p {
     margin-bottom: 1.5rem;
     font-size: 1rem;
     color: var(--text-light);
 }

 .home-article ul li {
     position: relative;
     padding-left: 20px;
     margin-bottom: 10px;
     font-size: 0.95rem;
     color: var(--text-medium);
 }

 .home-article ul li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 8px;
     width: 6px;
     height: 6px;
     border-radius: 50%;
 }

 .home-article ul.light li::before {
     background-color: var(--primary-color);
 }

 .home-article.dark {
     background: var(--text-dark);
     color: #ffffff;
     border: none;
 }

 .home-article.dark h3 {
     color: #ffffff;
 }

 .home-article.dark p {
     color: #A8A29E;
 }

 .home-article.dark .icon.blue {
     background-color: rgba(255, 255, 255, 0.1);
     color: #FDBA74;
 }

 .home-article.dark ul li {
     color: #D6D3D1;
 }

 .home-article.dark ul li::before {
     background-color: #FDBA74;
 }

 #avantages {
     background-color: var(--bg-card);
     border-top: 1px solid rgba(0, 0, 0, 0.05);
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
 }

 #avantages .container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: stretch;
     max-width: 1200px;
     margin: 0 auto;
 }

 #avantages img {
     border-radius: 12px;
     box-shadow: 0 20px 25px -5px rgba(28, 25, 23, 0.2);
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: sepia(20%);
 }

 #avantages .content {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 #avantages .content h2 {
     text-align: left;
     font-size: clamp(1.25rem, 2.5vw, 1.75rem);
     line-height: 1.4;
     hyphens: none;
     -webkit-hyphens: none;
     -ms-hyphens: none;
 }

 #avantages .content .divider.left {
     margin-left: 0;
     width: 50px;
     margin-bottom: 2rem;
 }

 #avantages .item {
     display: flex;
     gap: 1.5rem;
     margin-bottom: 2.5rem;
     align-items: flex-start;
 }

 #avantages .item:last-child {
     margin-bottom: 0;
 }

 #avantages .item .icon {
     flex-shrink: 0;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
 }

 #avantages .item .icon.green {
     background-color: var(--green-bg);
     color: var(--green-text);
 }

 #avantages .item .icon.blue {
     background-color: var(--accent-soft-bg);
     color: var(--accent-soft-text);
 }

 #avantages .item h4 {
     font-size: 1.25rem;
     margin-bottom: 0.5rem;
     color: var(--text-dark);
 }

 #avantages .item p {
     color: var(--text-light);
     font-size: 0.95rem;
 }

 #zones {
     background-color: var(--text-dark);
     color: #ffffff;
     text-align: center;
 }

 #zones .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 #zones h2 {
     color: #ffffff;
 }

 #zones .subtitle {
     color: #A8A29E;
     margin-bottom: 2rem;
 }

 #zones .tags {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 1rem;
     margin-top: 3rem;
 }

 #zones .tags span {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 10px 20px;
     border-radius: 50px;
     font-weight: 500;
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.95rem;
     color: #E7E5E4;
 }

 /* Fin page d'acceuil */

 /* Responsive */
 @media (max-width: 900px) {
     #hero .hero-logo-text span:first-child {
         font-size: 3rem;
     }

     #avantages .container {
         display: flex;
         flex-direction: column-reverse;
     }

     #avantages img {
         height: auto;
         max-height: 400px;
         width: 100%;
         object-fit: cover;
     }

     .home-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 600px) {
     #hero .hero-logo-text img {
         width: 11rem;
     }

     #hero {
         height: 100vh;
     }


     .home-article {
         padding: 2rem;
     }

     #avantages .content {
         text-align: center;
     }

     #avantages .content .item {
         flex-direction: column;
         align-items: center;
     }

     #avantages .content h2 {
         text-align: center;
     }

     #avantages .content .divider.left {
        margin-left: calc(50vw - 50px);
         margin-top: 1rem;
     }
 }

 @media (max-width: 480px) {
     #hero .buttons {
         flex-direction: column;
         width: 100%;
     }

     #hero .buttons a {
         width: 100%;
         justify-content: center;
     }

     #hero .content p {
         font-size: 1rem;
     }
 }

 @media (max-width: 425px) {
     .home-article h3 {
         font-size: 1.3rem;
     }
 }

 @media (max-width: 350px) {
     #hero .hero-logo-text img {
         width: 9rem;
     }
 }

 /* Fin responsive */