/*styles.css*/

body {
    margin: 0 auto;
    padding: 0 auto;
}

/*tete de page*/

header.header {
    display: flex;
    align-items: center;
}

header.header img {
    width: 150px;
    height: auto;
}

section.top-page {
    background: url("../logo/logofond.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    padding: 25px;


}

/*menue de navigation*/
nav.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 70px;
    margin-left: 40px;
    margin-right: 350px;
}

nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 90px;
    cursor: pointer;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    
}

h1 {
    color: white;
    font-size: 40px;
    text-align: center;
    margin-top: 100px;
}

/* services */
section.services {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 60px auto;
    margin-left: 50px;
    margin-right: 50px;
}

.delivery-icon {
    font-size: 50px;
    color: #000000;
    width: 100px;
    height: auto;
    align-items: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    text-align: center;
    margin: 20px;
}

.service-description {
    margin-top: 15px;
    font-size: 18px;
    color: #333333;
    width: 100%;
    text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    background-color: cyan;
    background-size: 50%;
}

h3 {
    color: rgb(255, 0, 0);
    font-size: 25px;
    font-weight: 600;
}

p {
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
    justify-content: space-around;
    margin-left: auto;
}

/*best selles*/
.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 50px;
    color: #000000;
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    background-color: rgb(252, 168, 0);
    width: 50px;
    height: 7px;
    bottom: 0;
}

.best-formule {
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
}

.best-items {
    margin: 100px;
}

.formule-45 {
    background-size: cover;
    background-position: center;
    min-width: 350px;
    min-height: 350px;
    flex: 1;
    margin: 10px;
    position: relative;
}

.formule-45euro {
    background-image: url("../image/image45euro.jpg");
}

.formule-55euro {
    background-image: url("../image/image55euro.jpg");
}

.formule-65euro {
    background-image: url("../image/image65euro.jpg");
}

.formule-95euro {
    background-image: url("../image/image95euro.jpg");
}


.formule-info {
    background-color: #FFFFFFDF;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 20px;
}

.formule-name {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.formule-price {
    color: rgb(255, 0, 0);
    font-size: 18px;
    font-weight: 800;
    margin: 5px 0 0 0;
    line-height: 1.2;
}

/* Bloc infos complémentaire */
.footer-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-left: 10px;
    background-color: #af3030df;
}

/* Titre du bloc */
.footer-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Horaires */
.footer-info .hours {
    margin: 8px 0;
    font-size: 30px;
}

/* Rendez-vous */
.footer-info .appointment {
    margin: 12px 0;
    font-size: 20px;
    color: #ffcc00;
}

/* Adresse */
.footer-info .address {
    margin: 12px 0;
    font-size: 25px;
}

.footer-info .address span {
    font-size: 25px;
    color: #ffffff;
}

/* Contact */
.footer-info .footer-contact {
    margin-top: 12px;
    font-size: 25px;
    font-weight: 500;
}
/* ===== COOKIE BANNER CENTRÉ ===== */
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #111;
    color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    max-width: 90%;
    width: 420px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

/* Texte */
.cookie-banner p {
    margin-bottom: 15px;
}

/* Liens */
.cookie-banner a {
    color: #ffcc00;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Boutons */
.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-buttons button {
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

/* Accepter */
#accept-cookies {
    background-color: #ffcc00;
    color: #111;
    font-weight: bold;
}

/* Refuser */
#refuse-cookies {
    background-color: #444;
    color: #fff;
}

#accept-cookies:hover {
    background-color: #e6b800;
}

#refuse-cookies:hover {
    background-color: #666;
}

/* =========================
   BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* =========================
   SECTION CONTACT
========================= */
.contact-section {
    max-width: 800px;
    margin: 60px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #111;
}

.contact-intro {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
}

.appointment-warning {
    text-align: center;
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
}

.contact-phone {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-phone a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
}

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

/* =========================
   FORMULAIRE
========================= */
.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    margin-top: 8px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0077cc;
    box-shadow: 0 0 0 2px rgba(0, 119, 204, 0.15);
}

.contact-form button {
    margin-top: 10px;
    padding: 14px;
    background: #0077cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background: #005fa3;
    transform: translateY(-2px);
}

/* =========================
   ADRESSE
========================= */
.contact-address {
    margin-top: 30px;
    text-align: center;
    color: #555;
    font-size: 0.95rem;
}

.contact-address span {
    font-size: 0.85rem;
    color: #777;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #111;
    color: #eee;
    padding: 40px 30px;
    margin-top: 60px;
}

.footer-info {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.footer-info h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-info a {
    color: #4da3ff;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-legal {
    margin-top: 25px;
    text-align: center;
}

.footer-legal a {
    color: #bbb;
    font-size: 0.85rem;
    margin: 0 5px;
}

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

.copyright,
.all-rights-reserved {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 10px;
    color: #888;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
    .contact-section {
        padding: 25px;
        margin: 30px 15px;
    }

    .contact-section h1 {
        font-size: 1.6rem;
    }

    .contact-form button {
        font-size: 1rem;
    }
}
/* =========================
   FOOTER – CENTRAGE HORAIRES & CONTACT
========================= */

.footer-info,
.footer-info * {
    text-align: center;
}

.footer-info p,
.footer-info h4 {
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   FORMULES – HOVER
========================= */

.formule-45 {
    position: relative;
    display: block;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    overflow: hidden;
}

.formule-info {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.formule-45:hover .formule-info {
    opacity: 1;
}

.formule-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.formule-price {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.formule-more {
    font-size: 0.9rem;
    padding: 8px 14px;
    border: 1px solid #fff;
    border-radius: 20px;
}

/* =========================
   CARTES FORMULES PHOTOS
========================= */

.best-formule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 20px;
}

.best-formule a {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.best-formule a:hover {
    transform: scale(1.03);
}

.best-formule img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Overlay texte “Voir / En savoir plus” */
.formule-info {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 10px;
}

.best-formule a:hover .formule-info {
    opacity: 1;
}

.formule-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.formule-price {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.formule-more {
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
}
/* =========================
   BOUTON DEMANDER UN DEVIS
========================= */

.btn-devis {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #0077cc;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-devis:hover {
    background-color: #005fa3;
}

@media (max-width: 768px) {
    .best-formule {
        grid-template-columns: 1fr;
    }

    .formule-name {
        font-size: 1.2rem;
    }

    .formule-price {
        font-size: 1rem;
    }

    .formule-more {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .btn-devis {
        width: 100%;
        text-align: center;
    }
}

/*top page formules*/
.prestations-header {   
    display: flex;
    align-items: center;
}

.prestations-header img {   
    width: 150px;
    height: auto;
}

h1.formule {
    color: rgb(201, 0, 0);
    font-size: 30px;
    text-align: center;
    margin-top: 20px;
    margin-left: 40px;
}
nav.nav.formule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 400px;
    margin-left: 100px;
}

nav.nav li a.top-page.formule {
    color: rgb(255, 3, 3);
    text-decoration: none;  
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    margin-left: 100px;
}

.formule-subtitle {
    color: rgb(208, 25, 25);
    font-size: 25px;
    text-align: center;
    margin-top: 10px;
}

ul.info-formule {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
    text-align: center;
    line-height: 1.6;
}

body .prestations-header {
    background-color: #c59a23;
}

body .contact-header {
    background-color: #c59a23;
}

/* ===== BASE RESPONSIVE ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Textes adaptatifs */
h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

p, li {
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .service-item {
    width: 100%;
  }

  .best-formule {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .formule-45 {
    width: 100%;
  }

  .landing-page {
    padding: 40px 15px;
    text-align: center;
  }

  .big-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .footer {
    text-align: center;
    padding: 30px 15px;
  }

  .footer-info,
  .footer-links {
    width: 100%;
  }
}
/* ===== FORMULES DÉTAIL ===== */       
.formule-detail {
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}               

.formule-detail h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
    color: #111;
}
.formule-detail ul.info-formule {
    margin-top: 20px;
    list-style-type: disc;
    padding-left: 20px;
}
.formule-detail li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}
.formule-detail .formule-subtitle {
    font-size: 1.2rem;
    color: #555;
}
.formule-detail ul.info-formule li {
    margin-bottom: 12px;
}
.formule-detail ul.info-formule li:last-child {
    margin-bottom: 0;
}       
.formule-detail ul.info-formule li::before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
}
/* =========================
   RESPONSIVE FORMULES DÉTAIL
========================= */
@media (max-width: 600px) {
    .formule-detail {
        padding: 20px;
        margin: 20px 15px;
    }           
    .formule-detail h2 {
        font-size: 1.6rem;
    }
    .formule-detail .formule-subtitle {
        font-size: 1rem;
    }
    .formule-detail ul.info-formule li {            
        font-size: 1rem;
    }
}       
/* =========================
   FORMULES DÉTAIL – LISTEE
========================= */
ul.info-formule {
    list-style-type: disc;      
    padding-left: 20px;
}           
ul.info-formule li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}
ul.info-formule li:last-child {
    margin-bottom: 0;
}
ul.info-formule li::before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
}       
body .prestations-header {
    background-color: #c59a23;
}
body .contact-header {
    background-color: #c59a23;
}
/* ===== FORMULES DÉTAIL – LISTEE ===== */       
.formule-detail {
    max-width: 800px;
    margin: 40px auto;      
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;            
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}       
.formule-detail h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
    color: #111;
}
.formule-detail ul.info-formule {
    margin-top: 20px;
    list-style-type: disc;
    padding-left: 20px;
}   
.formule-detail li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}
.formule-detail .formule-subtitle {
    font-size: 1.2rem;          
    color: #555;
}
.formule-detail ul.info-formule li {
    margin-bottom: 12px;
}           
.formule-detail ul.info-formule li:last-child {
    margin-bottom: 0;
}       
.formule-detail ul.info-formule li::before {
    content: "✓";          
    color: #28a745;
    margin-right: 10px;             
}
/* =========================
    RESPONSIVE FORMULES DÉTAIL              
========================= */
@media (max-width: 600px) {
    .formule-detail {               
        padding: 20px;              
        margin: 20px 15px;         
    }                                       
    .formule-detail h2 {
        font-size: 1.6rem;         
    }
    .formule-detail .formule-subtitle {
        font-size: 1rem;
    }
    .formule-detail ul.info-formule li {        
        font-size: 1rem;                        
    }
}           
/* =========================
   FORMULES DÉTAIL – LISTEE ===== */       
.formule-detail {
    max-width: 800px;               
    margin: 40px auto;      
    background: #ffffff;                
    padding: 30px;               
    border-radius: 12px;            
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);              
}       
.formule-detail h2 {
    text-align: center;               
    margin-bottom: 15px;          
    font-size: 2rem;                    
    color: #111;              
}
.formule-detail ul.info-formule {               
    margin-top: 20px;               
    list-style-type: disc;              
    padding-left: 20px;              
}           
.formule-detail li {
    margin-bottom: 10px;               
    font-size: 1.1rem;              
    color: #333;              
}
.formule-detail .formule-subtitle {
    font-size: 1.2rem;              
    color: #555;              
}           
.formule-detail ul.info-formule li {
    margin-bottom: 12px;              
}       
.formule-detail ul.info-formule li:last-child {               
    margin-bottom: 0;
}       
.formule-detail ul.info-formule li::before {           
    content: "✓";      
    color: #28a745;               
    margin-right: 10px;             
}       
/* =========================        
   RESPONSIVE FORMULES DÉTAIL              
========================= */
@media (max-width: 600px) {               
    .formule-detail {               
        padding: 20px;              
        margin: 20px 15px;         
    }                                       
    .formule-detail h2 {
        font-size: 1.6rem;         
    }
    .formule-detail .formule-subtitle {
        font-size: 1rem;
    }
    .formule-detail ul.info-formule li {        
        font-size: 1rem;                        
    }
}                                   
/* =========================
   FORMULES DÉTAIL – LISTEE ===== */       
.formule-detail {       
    max-width: 800px;               
    margin: 40px auto;      
    background: #ffffff;                
    padding: 30px;               
    border-radius: 12px;            
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);              
}       
.formule-detail h2 {
    text-align: center;               
    margin-bottom: 15px;      
    font-size: 2rem;                    
    color: #111;              
}           
.formule-detail ul.info-formule {               
    margin-top: 20px;               
    list-style-type: disc;              
    padding-left: 20px;              
}        
.formule-detail li {
    margin-bottom: 10px;               
    font-size: 1.1rem;              
    color: #333;              
}           
.formule-detail .formule-subtitle {
    font-size: 1.2rem;              
    color: #555;              
}        
.formule-detail ul.info-formule li {               
    margin-bottom: 12px;              
}       
.formule-detail ul.info-formule li:last-child {              
    margin-bottom: 0;                       
}    
.formule-detail ul.info-formule li::before {       
    content: "✓";      
    color: #28a745;               
    margin-right: 10px;             
}           
/* =========================        
   RESPONSIVE FORMULES DÉTAIL              
========================= */
@media (max-width: 600px) {               
    .formule-detail {               
        padding: 20px;              
        margin: 20px 15px;         
    }                                       
    .formule-detail h2 {     
        font-size: 1.6rem;         
    }                       
    .formule-detail .formule-subtitle {
        font-size: 1rem;
    }
    .formule-detail ul.info-formule li {        
        font-size: 1rem;                        
    }
}   
/* ============================= */
/*        RESPONSIVE MOBILE      */
/* ============================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ---------- HEADER ---------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.header img {
  max-width: 150px;
}

/* ---------- NAV ---------- */
.nav {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- HERO ---------- */
.landing-page {
  padding: 60px 20px;
  text-align: center;
}

.big-title {
  font-size: clamp(1.6rem, 5vw, 3rem);
}

/* ---------- SERVICES DESKTOP ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 60px;
}

.service-item {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.delivery-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ---------- HEADER ---------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.header img {
  max-width: 150px;
}

/* ---------- NAV ---------- */
.nav {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- HERO ---------- */
.landing-page {
  padding: 60px 20px;
  text-align: center;
}

.big-title {
  font-size: clamp(1.6rem, 5vw, 3rem);
}

/* ---------- SERVICES DESKTOP ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 60px;
}

.service-item {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.delivery-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
nav.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 500px;
    margin-left: 100px;
}       
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    margin-left: 100px;
}       

@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}   
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    margin-left: 100px;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;

}

@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;
    margin-left: 0;
}       

@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}       
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}       
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }         
}       
nav.nav li a {
    color: rgb(255, 255, 255);          
    text-decoration: none;  
    font-size: 30px;          
    cursor: pointer;            
    text-align: center;
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {               
    grid-template-columns: 1fr;           
    padding: 20px;          
  }             
}    
nav.nav li a {
    color: rgb(255, 255, 255);          
    text-decoration: none;  
    font-size: 30px;          
    cursor: pointer;            
    text-align: center;
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {               
    grid-template-columns: 1fr;           
    padding: 20px;        
  }                     
}       
nav.nav li a {
    color: rgb(255, 255, 255);          
    text-decoration: none;  
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;                             
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {               
    grid-template-columns: 1fr;           
    padding: 20px;        
  }                     
}    
nav.nav li a {          
    color: rgb(255, 255, 255);          
    text-decoration: none;  
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;                             
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {            
    grid-template-columns: 1fr;         
    padding: 20px;      
  }         
}       
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    margin-left: 0;
}       
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;         
    padding: 20px;      
  }       
}
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;  
    font-size: 30px;
    cursor: pointer;        
    text-align: center;
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;         
    padding: 20px;      
  }       
}
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;          
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;             
    margin-left: 0;
}       
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;         
    padding: 20px;      
  }       
}       
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;          
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;             
    margin-left: 0;
}
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;         
    padding: 20px;      
  }       
}   
nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;          
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;             
    margin-left: 0;
}       
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }      
}   
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;      
    position: relative;         
    padding-bottom: 10px;
}       
.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: rgb(255, 0, 0);
    position: absolute;
    left: 0;
    bottom: 0;
}       
.best-formule {
    display: flex;              
    flex-wrap: wrap;          
    justify-content: center;
    gap: 20px;      
    margin: 20px;
}       
.best-formule a {
    position: relative;
    display: block;             
    width: 300px;          
    height: 200px;          
    border-radius: 12px;          
    overflow: hidden;       
    text-decoration: none;          
    color: white;       
    background-size: cover;             
    background-position: center;    
    transition: transform 0.3s ease;        
}    
.best-formule a:hover {      
    transform: scale(1.05);        
}                   
.best-formule img {
    width: 100%;              
    height: 100%;          
    object-fit: cover;        
    border-radius: 12px;      
}       
.formule-name {
    color: rgb(255, 255, 255);          
    font-size: 22px;          
    font-weight: 700;          
    margin: 0;        
    line-height: 1.2;
}    
.formule-price {                

    color: rgb(255, 255, 255);          
    font-size: 26px;          
    font-weight: 800;          
    margin: 10px 0 0 0;        
}    
.formule-more {                 
    display: inline-block;          
    margin-top: 12px;          
    padding: 8px 16px;          
    background-color: rgba(0, 0, 0, 0.6);          
    color: #fff;          
    font-size: 14px;          
    border-radius: 20px;          
    text-decoration: none;        
}       
.formule-more:hover {       
    background-color: rgba(0, 0, 0, 0.8);           
}       
@media (max-width: 600px) {
    .best-formule a {
        width: 100%;          
        height: 180px;          
    }       
}    

h2.section-title {      
    font-size: 28px;          
    font-weight: 700;          
    margin-bottom: 30px;          
    display: inline-block;      
    position: relative;         
    padding-bottom: 10px; 
    margin-top: 40px;
    margin-left: 100px;    
}       
h2.section-title::after {          
    content: "";          
    width: 60px;          
    height: 4px;      
    background-color: rgb(255, 0, 0);                   
    position: absolute;
    left: 0;          
    bottom: 0;      
}
/* =========================
   FOOTER – CENTRAGE HORAIRES & CONTACT
========================= */
.footer-info,
.footer-info * {                
    text-align: center;        
}                           
.footer-info p,
.footer-info h4 {          
    margin-left: auto;          
    margin-right: auto;        
}               
/* =========================
   FORMULES – HOVER         
========================= */
.formule-45 {         
    position: relative;             
    align-self: start;          
    display: block;             
    text-decoration: none;          
    color: rgb(255, 255, 255);          
    border-radius: 12px;          
    overflow: hidden;       
}    
.formule-info {        
    position: absolute;             
    inset: 0;          
    background: rgba(0, 0, 0, 0.55);          
    display: flex;          
    flex-direction: column;          
    justify-content: center;          
    align-items: center;          
    opacity: 0;          
    transition: opacity 0.3s ease;        
    text-align: center;        
}                               
.formule-45:hover .formule-info {          
    opacity: 1;        
}       
.formule-name {                          
    font-size: 1.3rem;          
    font-weight: bold;          
    margin-bottom: 8px;        
}       
.formule-price {          
    font-size: 1.6rem;          
    margin-bottom: 15px;        
}       
.formule-more {     
    font-size: 0.9rem;                  
    padding: 8px 14px;          
    border: 1px solid #fff;         
    border-radius: 20px;                    
}    
/* =========================
   CARTES FORMULES PHOTOS           
========================= */
.best-formule {          
    display: grid;              
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));          
    gap: 20px;    
    margin: 40px 20px;              
}       
.best-formule a {          
    position: relative;             
    display: block;             
    border-radius: 12px;            
    overflow: hidden;   
    text-decoration: none;          
    color: rgb(255, 255, 255);          
    transition: transform 0.3s ease;    
}      
.best-formule a:hover {          
    transform: scale(1.03);        
}       
.best-formule img {          
    width: 100%;          
    display: block;
    border-radius: 12px;      
}       
/* Overlay texte “Voir / En savoir plus” */
.formule-info {          
    position: absolute;            
    inset: 0;               
    background: rgba(0, 0, 0, 0.55);          
    display: flex;        
    flex-direction: column;             
    justify-content: center;          
    align-items: center;      
    opacity: 0;         
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 10px;        
}       
.best-formule a:hover .formule-info {       
    opacity: 1; 
}    
.formule-name {     
    font-size: 1.4rem;          
    font-weight: bold;          
    margin-bottom: 8px;        
}                   

.formule-price {          
    font-size: 1.2rem;          
    margin-bottom: 12px;        
}    
.formule-more {         
    font-size: 0.9rem;                  
    padding: 8px 16px;          
    border: 1px solid #fff;         
    border-radius: 20px;          
    background-color: rgba(255, 255, 255, 0.2);        
}   
/* =========================
   BOUTON DEMANDER UN DEVIS
========================= */
.btn-devis {          
    display: inline-block;          
    margin-top: 15px;          
    padding: 12px 25px;          
    background-color: rgb(0, 119, 204);         
    color: #fff;                                                                
    font-weight: bold;  
    text-decoration: none;          
    border-radius: 8px;          
    transition: background-color 0.3s ease;       
}   
.btn-devis:hover {          
    background-color: rgb(0, 95, 163);         
}       
@media (max-width: 768px) {          
    .best-formule {              
        grid-template-columns: 1fr;          
    }       
    .formule-name {          
        font-size: 1.2rem;          
    }    
    .formule-price {      
        font-size: 1rem;          
    }                           


    .formule-more {          
        font-size: 0.85rem;          
        padding: 6px 12px;        
    }    
    .btn-devis {          
        width: 100%;          
        text-align: center;        
    }                                       
}                       
/*top page formules*/       
.prestations-header {           
    display: flex;          
    align-items: center;        
}    
.prestations-header img {       
    width: 150px;          
    height: auto;        
}       
h1.formule {      
    color: rgb(201, 0, 0);              
    font-size: 30px;          
    text-align: center;          
    margin-top: 20px;
    margin-left: 40px;                                  
}    
nav.nav.formule {          
    display: flex;              
    justify-content: space-between;          
    align-items: center;          
    list-style: none;          
    width: 400px;          
    margin-left: 100px;        
}       
nav.nav li a.top-page.formule {     
    color: rgb(255, 3, 3);                                              
    text-decoration: none;  
    font-size: 20px;          
    cursor: pointer;
    text-align: center;         
    margin-left: 100px;             
}       
.formule-subtitle {         
    color: rgb(208, 25, 25);                                        
    font-size: 25px;
    text-align: center;     
    margin-top: 10px;                                                                   

}
ul.info-formule {          
    list-style-type: none;          
    padding: 0;          
    margin-top: 15px;          
    text-align: center;          
    line-height: 1.6;        
}       
body .prestations-header {        
    background-color: rgb(197, 154, 35);                
}       
body .contact-header {      
    background-color: rgb(197, 154, 35);                                    
}
/* ===== BASE RESPONSIVE ===== */    
* {     
  box-sizing: border-box;        
}               
body {          
  margin: 0;          
  padding: 0;          
  max-width: 100%;          
  overflow-x: hidden;          
  font-family: Arial, Helvetica, sans-serif;        
}    
img, video {          
  max-width: 100%;          
  height: auto;          
  display: block;        
}    
/* Textes adaptatifs */         
h1 {          
  font-size: clamp(1.8rem, 5vw, 3rem);        
}    
h2 {          
  font-size: clamp(1.4rem, 4vw, 2.2rem);        
}    
p, li {         
  font-size: clamp(0.95rem, 3.5vw, 1            

.1rem);          
  line-height: 1.6;       
}           
/* ===== MOBILE ===== */       
@media (max-width: 768px) {         
  header {          
    flex-direction: column;          
    align-items: center;          
    text-align: center;        
  }       
  nav {         
    display: flex;                  
    flex-direction: column;         
    gap: 10px;                              
    }               
    .services {         
    display: flex;        
    flex-direction: column;                     
    gap: 20px;          
    padding: 0 15px;
    }       
    .service-item {     
    width: 100%;
    }                       
    .best-formule {         
    display: flex;              
    flex-direction: column;         
    gap: 20px;          
    padding: 0 15px;                
    }       
    .formule-45 {          
    width: 100%;      
    }           
    .landing-page {          
    padding: 40px 15px;         
    text-align: center;        
    }       
    .big-title {      
    font-size: 1.8rem;        
    }                   
}
@media (max-width: 768px) {         
    .footer {          
        text-align: center;          
        padding: 30px 15px;        
    }       
    .footer-info,          
    .footer-links {          
        width: 100%;        
    }       
    }               
/* ===== FORMULES DÉTAIL ===== */            
.formule-detail {          
    max-width: 800px;          
    margin: 40px auto;      
    background: #ffffff;                
    padding: 30px;               
    border-radius: 12px;            
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);              
}        
.formule-detail h2 {                
    text-align: center;               
    margin-bottom: 15px;          
    font-size: 2rem;                    
    color: #111;              
}       
.formule-detail ul.info-formule {       
    margin-top: 20px;               
    list-style-type: disc;              
    padding-left: 20px;              
}           
.formule-detail li {           
    margin-bottom: 10px;            


    font-size: 1.1rem;        
    color: #333;                            
}
.formule-detail .formule-subtitle {          
    font-size: 1.2rem;              
    color: #555;              
}       
.formule-detail ul.info-formule li {           
    margin-bottom: 12px;                        
}       
.formule-detail ul.info-formule li:last-child {              
    margin-bottom: 0;                   
}       
.formule-detail ul.info-formule li::before {       
    content: "✓";                  
    color: #28a745;              
    margin-right: 10px;                         
}    
/* =========================                    
    RESPONSIVE FORMULES DÉTAIL          
========================= */            
@media (max-width: 600px) {               
    .formule-detail {               
        padding: 20px;              
        margin: 20px 15px;         
    }                                       
    .formule-detail h2 {     
        font-size: 1.6rem;         
    }                       
    .formule-detail .formule-subtitle {
        font-size: 1rem;
    }
    .formule-detail ul.info-formule li {        
        font-size: 1rem;                        
    }
}
nav.nav li a.top-page.formule {     
    color: rgb(255, 3, 3);                                              
    text-decoration: none;  
    font-size: 20px;            
    cursor: pointer;                
    text-align: center;
    margin-left: 0; 
}   
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
nav.nav li a.top-page.formule {     
    color: rgb(255, 3, 3);      
    text-decoration: none;

    font-size: 20px;        
    cursor: pointer;            

    text-align: center;
    margin-left: 0; 
}   
@media (max-width: 768px) {             
    .services {          
        grid-template-columns: 1fr;         
        padding: 20px;      
    }         
    }               
nav.nav li a.top-page.formule {    
    color: rgb(255, 3, 3);                  
    text-decoration: none;
    font-size: 20px;

    cursor: pointer;        
    text-align: center;                 
    margin-left: 0; 
}   
@media (max-width: 768px) {             
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;

    }         
}        
nav.nav li a.top-page.formule {     
    color: rgb(255, 3, 3);                  
    text-decoration: none;  
    font-size: 20px;        
    cursor: pointer;            
    text-align: center;                 
    margin-left: 0; 
}
@media (max-width: 768px) {             
  .services {     
    grid-template-columns: 1fr;     
    padding: 20px;
  }         
}     
nav.nav li a.top-page.formule { 
    color: rgb(255, 3, 3);                  
    text-decoration: none;  
    font-size: 20px;        
    cursor: pointer;            
    text-align: center;                 
    margin-left: 0; 
}   
@media (max-width: 768px) {             
  .services {     
    grid-template-columns: 1fr;    
    padding: 20px;                  
    }               
}   
nav.nav li a.top-page.formule {    
    color: rgb(255, 3, 3);              
                


    text-decoration: none;              
    font-size: 20px;
    cursor: pointer;        
    text-align: center;             

    margin-left: 0; 
}           
@media (max-width: 768px) {             
  .services {     
    grid-template-columns: 1fr;     
    padding: 20px;          
    }               
}   
nav.nav li a.top-page.formule {    
    color: rgb(255, 3, 3);                  
    text-decoration: none;  
    font-size: 20px;                
    cursor: pointer;    

    text-align: center;     

    margin-left: 0; 
}   
@media (max-width: 768px) {        
  .services {     
    grid-template-columns: 1fr;     
    padding: 20px;          
    }                   
}
nav.nav li a.top-page.formule {    
    color: rgb(255, 3, 3);                  
    text-decoration: none;  
    font-size: 20px;                
    cursor: pointer;    
    text-align: center;     
    margin-left: 0; 
}   
@media (max-width: 768px) {        
  .services {     
    grid-template-columns: 1fr;     
    padding: 20px;        
    }           
}       
/* =========================
   FORMULES DÉTAIL – LISTEE ===== */       
.formule-detail {       
    max-width: 800px;        
    margin: 40px auto;              
    background: #ffffff;            
    padding: 30px;              
    border-radius: 12px;        
    box-shadow: 0 10px 30px rgba(0, 0,          
0, 0.08);         
}
.formule-detail h2 {
    text-align: center;           
    margin-bottom: 15px;      
    font-size: 2rem;                
    color: #111;          
}
.formule-detail ul.info-formule {           
    margin-top: 20px;           
    list-style-type: disc;          
    padding-left: 20px;          
}        
.formule-detail li {                
    margin-bottom: 10px;           
    font-size: 1.1rem;        
    color: #333;                            
}                   
.formule-detail .formule-subtitle {        
    font-size: 1.2rem;          
    color: #555;          
}    
.formule-detail ul.info-formule li {           
    margin-bottom: 12px;                        
}    
.formule-detail ul.info-formule li:last-child {     
    margin-bottom: 0;                   
}                           

.formule-detail ul.info-formule li::before {       
    content: "✓";                  
    color: #28a745;              
    margin-right: 10px;                         
}    
/* =========================                    
    RESPONSIVE FORMULES DÉTAIL        
========================= */            

@media (max-width: 600px) {               
    .formule-detail {               
        padding: 20px;              
        margin: 20px 15px;         
    }                                       
    .formule-detail h2 {     
        font-size: 1.6rem;         
    }                       
    .formule-detail .formule-subtitle {
        font-size: 1rem;
    }
    .formule-detail ul.info-formule li {        
        font-size: 1rem;                        
    }
}   
/* =========================
   FORMULES DÉTAIL – LISTEE ===== */       
.formule-detail {       
    max-width: 800px;               
    margin: 40px auto;      
    background: #ffffff;                
    padding: 30px; 
    border-radius: 12px;        
    box-shadow: 0 10px 30px rgba(0, 0,
    0, 0.08);
}
.formule-detail h2 {
    text-align: center;               
    margin-bottom: 15px;      
    font-size: 2rem;                    
    color: #111;              
}           
.formule-detail ul.info-formule {            
    margin-top: 20px;               

    list-style-type: disc;            
    padding-left: 20px;                             
}        
.formule-detail li {            
    margin-bottom: 10px;            
    font-size: 1.1rem;        
    color: #333;
}                   
.formule-detail .formule-subtitle {        
    font-size: 1.2rem;              
    color: #555;        
}
.formule-detail ul.info-formule li {           
    margin-bottom: 12px;
}       
.formule-detail ul.info-formule li:last-child {         
    margin-bottom: 0;                           
}    
.formule-detail ul.info-formule li::before {                            
    content: "✓";                  
    color: #28a745;              
    margin-right: 10px;                         
}    
/* =========================                    
    RESPONSIVE FORMULES DÉTAIL      
========================= */            
@media (max-width: 600px) {               
    .formule-detail {               
        padding: 20px;              
        margin: 20px 15px;         
    }                                       
    .formule-detail h2 {     
        font-size: 1.6rem;         
    }                       
    .formule-detail .formule-subtitle {
        font-size: 1rem;
    }
    .formule-detail ul.info-formule li {        
        font-size: 1rem;                        
    }
}   
/* =========================                
   FORMULES DÉTAIL – LISTEE ===== */       
.formule-detail {    
    max-width: 800px;       
    margin: 40px auto;    
    background: #ffffff;

    padding: 30px;          
    border-radius: 12px;                        
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);      
}           
.formule-detail h2 {
    text-align: center;               
    margin-bottom: 15px;      
    font-size: 2rem;                    
    color: #111;              
}        
.formule-detail ul.info-formule {               
    margin-top: 20px;               
    list-style-type: disc;              
    padding-left: 20px;              
}     
.formule-detail li {          
    margin-bottom: 10px;               
    font-size: 1.1rem;              
    color: #333;              
}
.formule-detail .formule-subtitle {
    font-size: 1.2rem;              
    color: #555;              
}     
.formule-detail ul.info-formule li {               
    margin-bottom: 12px;              
}       
.formule-detail ul.info-formule li:last-child {         
    margin-bottom: 0;                                                                           
}
.formule-detail ul.info-formule li::before {       
    content: "✓";      
    color: #28a745;               
    margin-right: 10px;             
}        
/* =========================                
    RESPONSIVE FORMULES DÉTAIL              
========================= */
@media (max-width: 600px) {              
    .formule-detail {        
        padding: 20px;              
        margin: 20px 15px;         
    }                   
    .formule-detail h2 {     
        font-size: 1.6rem;         
    }                
    .formule-detail .formule-subtitle {             
        font-size: 1rem;
    }                   
    .formule-detail ul.info-formule li {        
        font-size: 1rem;                        
    }                   
}                               
/* =========================                
   FORMULES DÉTAIL – LISTEE ===== */       
.formule-detail {    
    max-width: 800px;    
    margin: 40px auto;              
    background: #ffffff;      
    padding: 30px;                                      
    border-radius: 12px;        
    box-shadow: 0 10px 30px rgba(0, 0,
    0, 0.08);
}               
.formule-detail h2 {
    text-align: center;               
    margin-bottom: 15px;      
    font-size: 2rem;                    
    color: #111;              
}        
.formule-detail ul.info-formule {            
    margin-top: 20px;                   
    list-style-type: disc;              
    padding-left: 20px;             
}       
.formule-detail li {          
    margin-bottom: 10px;               
    font-size: 1.1rem;              
    color: #333;              
}
.formule-detail .formule-subtitle {       
    font-size: 1.2rem;                  
    color: #555;              
}    
.formule-detail ul.info-formule li {       
    margin-bottom: 12px;                
}    
.formule-detail ul.info-formule li:last-child {             
    margin-bottom: 0;                           
}    
.formule-detail ul.info-formule li::before {                    
    content: "✓";                  
    color: #28a745;              
    margin-right: 10px;                         
}    
/* =========================            
    RESPONSIVE FORMULES DÉTAIL                              

========================= */            
@media (max-width: 600px) {          
    .formule-detail {                       
        padding: 20px;              
        margin: 20px 15px;         
    }                                    
    .formule-detail h2 {                

        font-size: 1.6rem;         
    }                
    .formule-detail .formule-subtitle {        
        font-size: 1rem;
    }                   
    .formule-detail ul.info-formule li {        
        font-size: 1rem;                        
    }                   
}   
/* ---------- SERVICES DESKTOP ---------- */                                                                    
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);                

    gap: 30px;
    padding: 40px 60px;                                             
}
.service-item {         
    background: #f5f5f5;          
    padding: 25px;          
    border-radius: 12px;                

    text-align: center;        
}               
.delivery-icon {          
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}           
@media (max-width: 768px) {
  .services {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}    
.service-item {         
    background: #f5f5f5;          
    padding: 25px;          
    border-radius: 12px;                

    text-align: center;        
}
.delivery-icon {          
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}        
@media (max-width: 768px) {         
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;          
        }               
    }               
.service-item {        
    background: #f5f5f5;            
    padding: 25px;          
    border-radius: 12px;
    text-align: center;       
}               
.delivery-icon {          
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}     
@media (max-width: 768px) {         
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;          
        }               
    }
.service-item {       
    background: #f5f5f5;
    padding: 25px;          
    border-radius: 12px;            
    text-align: center;                     
}            
.delivery-icon {    
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}                               
@media (max-width: 768px) {         
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;          
        }               
    }        
.service-item {      
    background: #f5f5f5;          
    padding: 25px;          
    border-radius: 12px;                
    text-align: center;        
}           



.delivery-icon {          
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}

@media (max-width: 768px) {         
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;          
        }               
    }

.service-item { 
    background: #f5f5f5;          
    padding: 25px;          
    border-radius: 12px;                
    text-align: center;        
}                   
.delivery-icon {          
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}                                                                               
@media (max-width: 768px) {         
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;          
        }               
    }       
.service-item {     
    background: #f5f5f5;            
    padding: 25px;        
    border-radius: 12px;                
    text-align: center;        
}        
.delivery-icon {          
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}                   
@media (max-width: 768px) {         
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;          
        }               
    }       
.service-item {             
    background: #f5f5f5;          
    padding: 25px;          
    border-radius: 12px;                
    text-align: center;        
}        
.delivery-icon {          
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}            
@media (max-width: 768px) {         
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;          
        }               
    }    
.service-item {             
    background: #f5f5f5;          
    padding: 25px;          
    border-radius: 12px;                
    text-align: center;        
}
.delivery-icon {          
    font-size: 2.5rem;          
    margin-bottom: 15px;        
}                                   
@media (max-width: 768px) {         
    .services {     
        grid-template-columns: 1fr;     
        padding: 20px;          
        }               
    }    
nav.nav li a {          
    color: rgb(255, 255, 255);          
    text-decoration: none;                          
    font-size: 30px;      
    cursor: pointer;                    
    text-align: center;                     
    margin-left: 0;                 
}   
@media (max-width: 768px) {       
    .services {
        grid-template-columns: 1fr;
        padding: 20px;                                          
    }
}

nav.nav li a {          
    color: rgb(255, 255, 255);          
    text-decoration: none;  
    font-size: 30px;          
    cursor: pointer;                                
    text-align: center;                     
    margin-left: 0;  
}                                                   
@media (max-width: 768px) {
  .services {               
    grid-template-columns: 1fr;           
    padding: 20px;        
  }                     
}    
nav.nav li a {          
    color: rgb(255, 255, 255);          
    text-decoration: none;  
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;                             
    margin-left: 0;
}                                                               

@media (max-width: 768px) {
  .services {               
    grid-template-columns: 1fr;           
    padding: 20px;        
  }                     
}                           
nav.nav li a {          
    color: rgb(255, 255, 255);          
    text-decoration: none;  
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;                             
    margin-left: 0;
}               
@media (max-width: 768px) {
  .services {               
    grid-template-columns: 1fr;           
    padding: 20px;        
  }                     
}                        
nav.nav li a {                          
    color: rgb(255, 255, 255);          
    text-decoration: none;  
    font-size: 30px;                
    cursor: pointer;            
    text-align: center;                             
    margin-left: 0;
}   
@media (max-width: 768px) {                     
    .services {               
        grid-template-columns: 1fr;           
        padding: 20px;        
    }                     
    }                   
nav.nav li a {        
    color: rgb(255, 255, 255);              
    text-decoration: none;
    font-size: 30px;        
    cursor: pointer;        
    text-align: center;
    margin-left: 0;
}   
@media (max-width: 768px) { 
    .services {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    }                   
nav.nav li a {        
    color: rgb(255, 255, 255);              
    text-decoration: none;
    font-size: 70px;        
    cursor: pointer;        
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.875rem);
    margin-left: auto;
    margin-right: auto;
    margin-left: 0;                    
}

nav.nav li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.875rem);
    cursor: pointer;
    text-align: center;
    margin-left: 0;
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}


h6 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.6;
    color: #0077cc;
}

h3{
    color: #4da3ff;
}

header{
    margin: 0;
}

/* ============================= */
/*        MENU BURGER            */
/* ============================= */

/* Bouton burger */
.burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Desktop */
@media (min-width: 769px) {
  .nav {
    display: flex;
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .burger {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .nav.active {
    display: flex;
  }

  .header {
    flex-direction: column;
    align-items: center;
  }
}


