*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    color: white;
    overflow-x: hidden;
    margin: 10px 0;
    padding: 0;
}

/* En tete*/
header {
    background-color: white;
    color: black;
    position: relative;
    z-index: 20;
}
nav.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: relative;
    z-index: 10;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    width: 50px;
    height: 50px;
}
.logo-text {
    font-size: 2.5rem;
    font-family: 'Brush Script MT', cursive;
    color: black;
}

/* Menu desktop (LAISSE COMME TU L’AS VOULU) */
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #0d0163;
    text-decoration: none;
}
.nav-links a:active {
    text-decoration: none;
}

/* MOBILE Menu (LAISSE COMME TU L’AS VOULU) */
.mobile-menu a {
    text-decoration: none;
    color: rgb(250, 247, 247);
    font-size: 1rem;
    transition: color 0.2s;
}
.mobile-menu a:hover {
    color: #0d0163;
    text-decoration: none;
}
.mobile-menu a:active {
    text-decoration: none;
}
/* Menu mobile caché de base */
.mobile-menu {
    display: none;
}

.cta-buttons {
    text-align: center;
    margin: 20px;
}
.cta-buttons button {
    padding: 10px 20px;
    background-color: rgb(155, 131, 181);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 15px;
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 20px;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 4;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: 0.3s;
}

/*  Titre / Hero */
.presentation{
    background: url('/public/Images/pexels-heyho-7750098.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 80vh;
    width: 100%;
    margin-top: 6vh;
    margin-left: 0;
}
.presentation::before{
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.5) ;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}
.presentation-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: min(100%, 900px);
}
.presentation-text h1 {
    font-size: 7rem;
    font-family: 'Brush Script MT', cursive;
}
.presentation-text p {
    font-size: 1.7rem;
}

/* Nos Services */
.Nos-sevices {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}
.card-serives {
    text-align: center;
    padding: 20px;
}
.card-serives.black {
    background: #000;
    color: white;
}
.card-serives.black button {
    background-color: #000;
    color: white;
}
.card-serives.white{
    background:white;
    color:  #000;
}
.card-serives.white button{
    background-color: #fff;
}
.card-serives {
    background: rgb(155, 131, 181);
    height: 300px;
    padding: 0;
    overflow: hidden;
}
.card-serives img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-serives h2 {
    margin-top: 15vh;
}
.card-serives button {
    background: white;
    color: #000;
    border: none;
    margin-top: 30px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
}
.formation {
    background-color:rgb(155, 131, 181);
    color: #000000;
    display: block;
    text-align: center;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}

/* A propos */
.A-propos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px ;
    background-color: #ffffff;
}
.A-propos-text{
    text-align: center;
    width: 600px;
    max-width: 100%;
    height: auto;
    background: rgba(155, 131, 181, 0.6 );
    flex: 1;
    padding: 30px;
}
.A-propos-text h2{
    font-size: 3rem;
    font-family: 'Brush Script MT', cursive;
    text-align: center;
    margin-top: 0;
    color: rgb(0, 0, 0);
}
.A-propos-text p{
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5rem;
    color: rgb(0, 0, 0);
    margin-top: 30px;
}
.A-propos-Image{
    flex: 1;
    text-align: right;
}
.A-propos-Image img{
    max-width: 70%;
}

/* Nos tarifs */
.tarifs{
    background-image: url('/public/Images/creative-portrait-beautiful-woman.jpg') ;
    position: relative;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column;
    overflow: hidden;
    min-height: 150vh;
    width: 100%;
    margin-top: 6vh;
    margin-left: 0;
    padding: 40px 20px;
}
.tarifs-section {
    background: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: auto;
    padding: 50px 30px;
    text-align: center;
}
.tarifs-section h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    margin-bottom: 20px;
}
.tarif-lien a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    font-size: 16px;
}
.btn .btn-reserver {
    position: relative;
    top: 40px;
    background-color:  #FBD6C0;
    text-decoration: none;
    border: none;
    color: #000;
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
}
.notice {
    background-color:rgb(155, 131, 181);
    padding: 15px;
    font-style: italic;
    font-size: 14px;
    border-radius: 4px;
    margin-bottom: 30px;
}
.tarif:last-child {
    border-bottom: none;
}

/* Tarifs Esthétique */
.Esthétique-tarifs{
    background-image: url('/public/Images/pexels-n-voitkevich-8467970.jpg') ;
    position: relative;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column;
    overflow: hidden;
    min-height: 130vh;
    width: 100%;
    margin-top: 6vh;
    margin-left: 0;
    padding: 40px 20px;
}
.Esthétique-tarifs-section {
    background: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: auto;
    padding: 50px 30px;
    text-align: center;
}
.Esthétique-tarifs-section h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    margin-bottom: 20px;
}
.btn-Esthétique .btn-reserver {
    position: relative;
    top: 30px;
    background-color:  #FBD6C0;
    text-decoration: none;
    border: none;
    color: #000;
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
}
.tarif:last-child {
    border-bottom: none;
}

/* Galerie */
.Galerie-section {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
}
.Galerie-section h2{
    font-size: 4rem;
    font-family: 'Brush Script MT', cursive;
}
.Galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 90px;
}
.Galerie-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.Galerie-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Nos destinations */
.destinations-header h2{
    text-align: center;
    font-size: 2.9rem;
    font-family: 'Brush Script MT', cursive;
    color: #000;
    margin-bottom: 20px;
}
/* ---------- Slider ---------- */
.slider {
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.slide {
    display: flex;
    width: 100%;
    animation: slide 12s infinite;
}
.slide img {
    width: 100%;
    object-fit: cover;
}
@keyframes slide {
    0%   { transform: translateX(0); }
    33%  { transform: translateX(-100%); }
    66%  { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* ---------- Cards Destinations ---------- */
.destination-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 15px;
}
.destination-cards .card {
    background-color: #FFF;
    border-radius: 5px;
    padding: 20px;
    width: 250px;
    height: 240px;
    text-align: left;
    transition: transform 0.3s ease;
}
.destination-cards .card:hover {
    transform: translateY(-5px);
}
.destination-cards .card img {
    width: 100%;
    height: 180px;
    border-radius: 5px;
    object-fit: cover;
    margin-bottom: 2px;
}
.destination-cards .card h3 {
    font-size: 1.3rem;
    margin-top: 3px;
}

/* articles */
.articles {
    display: flex;
    justify-content: center;
    margin-top: 10vh;
    gap: 30px;
    padding: 40px;
}
h3{
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #000;
    margin-top: 10vh;
}
.card {
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    transition: transform 0.3s ease;
}
.card:hover img {
    transform: scale(1.05);
}
.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.6em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

/* témoignages */
.temoignages {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
    color: black;
}
.divider {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 0 auto 20px auto;
}
.titre-section {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.8em;
    margin-bottom: 40px;
}
.temoignages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}
.temoignage {
    max-width: 300px;
    padding: 0 10px;
}
.quote {
    font-size: 2em;
    color: black;
    margin-bottom: 10px;
}
.temoignage p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 10px;
}
.auteur {
    font-size: 0.85em;
    color: #333;
}
.avis-button-container {
    margin-top: 20px;
}
.avis-button {
    background-color: #9e80a2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9em;
}

/* formulaire contact*/
.contact-section {
    position: relative;
    min-height: 90vh;
    width: 90%;
    margin: 30px auto 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: white;
    background-image: url("/public/Images/pexels-n-voitkevich-8467970.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-box {
    width: 600px;
    max-width: 100%;
    padding: 40px;
    background-color: rgba(0, 0, 0, 1);
    text-align: center;
    border-radius: 10px;
}
.contact-box h3 {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #fff;
}
.contact-section .divider {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 0 auto 20px auto;
}
.adresse {
    font-size: 0.95em;
    line-height: 1.5;
}
.horaires {
    color: #88a3d3;
    font-size: 0.9em;
    margin: 20px 0;
}
.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}
.contact-form .left,
.contact-form .right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input,
textarea {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px;
    font-size: 0.9em;
}
textarea {
    min-height: 120px;
}
.submit-container {
    width: 100%;
    text-align: right;
    margin-top: 10px;
}
button {
    background-color: #9e80a2;
    color: white;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
}
.plan-link {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #e1d1e8;
    text-decoration: none;
    font-size: 0.9em;
}

/* Formulaires de reservations */
.form-container {
    max-width: 600px;
    margin: 30px auto;
    background: #f9f9f9;
    color: #333;
    padding: 30px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.form-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}
.form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}
.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="email"],
.form-container input[type="date"],
.form-container select,
.form-container textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #333;
    color: #333;
    box-sizing: border-box;
    resize: vertical;
}
.radio-group,
.radio-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 5px;
}
.radio-inline label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
    cursor: pointer;
}
.form-container button {
    width: 99%;
    background-color: #333;
    color: #FFF;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.form-container button:hover {
    background-color: rgb(155, 131, 181);
    color: #333;
}

/* Confirmation du rdv */
.message {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    width: min(1000px, 95%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.message h1 {
    color: #1b1b1b;
    margin-bottom: 20px;
}
.message p {
    font-size: 18px;
    color: #333;
}
.message a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.message a:hover {
    background-color: #444;
}

/* FOOTER  */
footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.grid-footer{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap:20px;
}
.grid-footer p{
    text-align: center;
}
.grid-footer p i{
    display: flex;
    justify-content: center;
    justify-items: center;
}
footer .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #f2c1d1;
}
footer p,
footer a {
    color: #ccc;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.6;
}
footer a:hover {
    color: #fff;
}
footer .social-icons {
    display: flex;
    gap: 15px;
    font-size: 22px;
    margin-top: 5px;
}
footer .social-icons a {
    transition: color 0.3s;
}
footer .social-icons a:hover {
    color: #f2c1d1;
}
footer hr {
    margin: 30px 0;
    border: 0.5px solid #333;
}
footer .footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #888;
}



/* ----- Bouton Remonter en haut ----- */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: rgb(155, 131, 181); /* ta couleur principale */
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#scrollTopBtn:hover {
  background: #b29ed1; /* teinte plus claire au survol */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Apparition du bouton */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}


/* --------------------- Responsive Design --------------------- */

/* RESPONSIVE : styles mobile (TON MENU GARDÉ) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background-color: rgb(5, 5, 5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 2;
    }
    .mobile-menu a {
        color: rgb(0, 0, 0);
        font-size: 1.5rem;
        text-decoration: none;
        margin: 15px 0;
    }
    .mobile-menu.show {
        transform: translateY(0);
    }
}

/* ----- Par défaut (grands écrans ≥ 1025px) ----- */
.presentation,
.tarifs,
.Esthétique-tarifs {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}
.presentation {
    min-height: 80vh;
}
.presentation-text h1 {
    font-size: 5rem;
    text-align: center;
}
.presentation-text p {
    font-size: 1.8rem;
    text-align: center;
    padding: 0 10px;
}

/* ----- Petits écrans (max-width: 768px) ----- */
@media screen and (max-width: 768px) {
    .presentation {
        min-height: 65vh;
    }
    .presentation-text h1 {
        font-size: 3.2rem;
    }
    .Nos-sevices {
        padding: 20px 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .formation {
        width: 90%;
        margin: 20px auto;
        font-size: 1rem;
    }
    .A-propos {
        flex-direction: column;
        padding: 20px;
    }
    .A-propos-text,
    .A-propos-Image {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .A-propos-text h2 {
        font-size: 2.5rem;
    }
    .tarifs-section,
    .Esthétique-tarifs-section {
        padding: 30px 20px;
        width: 100%;
    }
    .Galerie {
        grid-template-columns: repeat(2, 1fr);
        gap: 1vh;
    }
    .Galerie img {
        width: 100%;
        height: auto;
    }
    .Nav-links {
        display: none;
        flex-direction: column;
        background-color: rgb(244, 237, 237);
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
    .Nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
        cursor: pointer;
    }
}

/* ----- Très petits écrans (max-width: 600px) ----- */
@media screen and (max-width: 600px) {
    .presentation-text h1 {
        font-size: 2.7rem;
    }
    .presentation-text p {
        font-size: 1rem;
        padding: 0 5px;
    }
    .Nos-sevices {
        grid-template-columns: 1fr;
    }
    .articles {
        flex-direction: column;
        align-items: center;
    }
    .temoignages-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .contact-section {
        flex-direction: column;
        width: 100%;
        min-height: auto;
        padding: 20px;
        margin: 0;
    }
    .contact-box {
        width: 90%;
        padding: 20px;
    }
    .contact-form {
        flex-direction: column;
    }
    .form-container {
        width: 95%;
    }
    .message {
        width: 90%;
        margin: 20px auto;
    }
    footer .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Menu entre 769px et 1024px (LAISSE) */
nav {
    background-color: rgb(155, 131, 181);
    color: white;
    padding: 10px 20px;
    position: relative;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-links {
    display: flex;
    gap: 15px;
}
.nav-links a {
    color:  rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1rem;
}
.nav-links a:hover {
    text-decoration: none;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger div {
    width: 25px;
    height: 3px;
    background-color: rgb(18, 17, 17);
}

/* MENU MOBILE (LAISSE) */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: rgb(155, 131, 181);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 5;
    text-align: center;
}
.mobile-menu a {
    padding: 15px 0;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu a:hover {
    background-color: #b29ed1;
}
/* Responsive menu */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu.show {
        display: flex;
    }
}

/* ---------- Responsive Design ---------- */
/* Tablettes (≤1024px) */
@media screen and (max-width: 1024px) {
    .destination-cards {
        gap: 20px;
    }
    .destination-cards .card {
        width: 45%;
    }
}
/* Mobiles moyens (≤768px) */
@media screen and (max-width: 768px) {
    .slide img {
        height: 300px;
    }
    .destination-cards .card {
        width: 100%;
        max-width: 250px;
    }
    .destination-cards {
        gap: 15px;
    }
}
/* Petits mobiles (≤480px) */
@media screen and (max-width: 480px) {
    .slide img {
        height: 230px;
    }
    .destination-cards {
        padding: 0 10px;
    }
    .destination-cards .card {
        padding: 15px;
    }
    .destination-cards .card h3 {
        font-size: 1.1rem;
    }
    .destination-cards .card p {
        font-size: 0.9rem;
    }
}



/* Ultra grands écrans (TV, ≥1600px, 4K, Smart TV) */
@media screen and (min-width: 1600px) {
    html {
        zoom: 1.1;
    }
    body {
        max-width: 1800px;
        margin: 0 auto;
    }
    header,
    section,
    footer {
        padding-left: 80px;
        padding-right: 80px;
    }
    .presentation-text h1 {
        font-size: 6rem;
    }
    .presentation-text p {
        font-size: 2rem;
    }
    .Nos-sevices {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .A-propos-text {
        max-width: 700px;
        margin: 0 auto;
    }
    .Galerie {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .card img,
    .Galerie-img img {
        border-radius: 12px;
    }
    footer .footer-container {
        max-width: 1500px;
        margin: 0 auto;
    }
    .presentation,
    .tarifs,
    .Esthétique-tarifs {
        max-height: 90vh;
    }
}
