/*
body {
    margin: 0;
font-family: 'Poppins', Arial, sans-serif;
    background-color: #f7f9fc;
    color: #333;
}*/




body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f7f9fc;
    color: #333;
    position: relative; /* nécessaire pour le pseudo-élément */
    z-index: 0;
}

/* Le PNG en surcouche avec opacité réglable */
body::before {
    content: "";
    position: fixed; /* reste fixe au scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://cabinetatlantique.fr/assets/card3.png') center center no-repeat;
    background-size: cover; /* ou cover selon l'effet souhaité */
    opacity: 0.1; /* 🔥 règle l'opacité ici (0.0 à 1.0) */
    pointer-events: none; /* ne bloque pas les clics */
    z-index: -1; /* derrière le contenu */
}











header,  {
    background-color: #005f73;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

main {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #0a9396, #94d2bd);
    color: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #ee9b00;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: bold;
}

.grid-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.nav-card {
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}
.nav-card:hover {
    transform: translateY(-5px);
}

.page-section {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-list, .contact-options, .infos-grid, .equipe-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.contact-card,  .equipe-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.info-card {
    background-color:  white;
    padding: 1.5rem;
    text-align: justify;
	border-radius: 1rem;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.equipe-card img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.rdv-form input, .rdv-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
}

.rdv-form button {
    padding: 0.75rem 1.5rem;
    background-color: #005f73;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}
.site-header {
    background-color: #0077b6;
    color: white;
    padding: 20px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.site-header h1 a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #ffd166;
}



.header-container {
    max-width: 1100px;
	padding-top: 5px;
    margin: auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

.logo {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
    text-decoration: none;
}

.modern-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.modern-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.2s ease-in-out;
}

.modern-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
/* Layout général pour le sticky footer */

.main-content {
    flex: 1;
}

/* Footer stylé et collant 
footer {
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}
*/
main {
    flex: 1;
    padding: 20px;
}
/*
footer {
    background-color: #0077b6;
    color: white;
    padding: 15px;
    text-align: center;
}
*/

.map-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f3faff;
    border-top: 1px solid #cce4f2;
    text-align: center;
}

.map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Conteneur principal pour centrer et limiter la largeur */
main {
  max-width: 1200px;      /* limite la largeur max */
  margin: 0 auto;         /* centre horizontalement */
  padding: 20px 40px;     /* espace intérieur */
  box-sizing: border-box;
}

/* Pour la section hero (texte + carte) */
.hero-map-first {
  display: flex;
  gap: 40px;               /* espace entre texte et carte */
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-map-first .hero-map {
  flex: 1 1 450px;         /* prend de l’espace avec un minimum */
  max-width: 600px;
}

.hero-map-first .hero-text {
  flex: 1 1 400px;
  max-width: 550px;
}

/* Pour le reste des sections, pareil */
.grid-navigation {
  max-width: 1200px;
  margin: 20px auto 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  box-sizing: border-box;
}
.hero-map-first {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-map-first .hero-map {
    flex: 1 1 400px;
    max-width: 1000px;
    min-width: 300px;
}

.hero-map-first iframe {
    width: 100%;    /* Prend toute la largeur du conteneur */
    height: 300px;  /* hauteur fixe ou ajustable */
    border: none;
}

.hero-map-first .hero-text {
    flex: 1 1 400px;
    max-width: 550px;
    min-width: 280px;
}

.hero-map-first h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero-map-first p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.page-prestations {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

.page-prestations .intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #007acc;
    border-bottom: 3px solid #007acc;
    padding-bottom: 5px;
}

.page-prestations .intro p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

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

.prestation-item {
        background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    transition: transform 0.3s ease;
}

.prestation-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}

.prestation-item h2 {
    color: #005a99;
    margin-bottom: 15px;
    font-weight: 600;
	text-align: center;
}

.prestation-item p,
.prestation-item ul {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
}

.prestation-item ul {
    padding-left: 20px;
}

.prestation-item ul li {
    margin-bottom: 8px;
}


.page-coordonnees {
    max-width: 1000px;
    margin: 50px auto 80px;
    padding: 0 25px;
    font-family: 'Poppins', sans-serif;
    color: #222;
}

.page-coordonnees .intro h1 {
    font-size: 3rem;
    color: #004a99;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-coordonnees .intro p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.5;
}

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

.card {
        background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
  
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgb(0 74 153 / 0.25);
}

.card .icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
    color: #007acc;
}

.card h2 {
    font-size: 1.6rem;
    color: #003d66;
    margin-bottom: 15px;
    font-weight: 600;
}

.card p,
.card ul {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
}

.card ul {
    padding-left: 20px;
    list-style-type: disc;
}

.btn-contact {
    display: inline-block;
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 15px rgb(0 122 204 / 0.4);
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #007acc;
}

.map-wrapper h2 {
    font-size: 2.4rem;
    color: #004a99;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-wrapper iframe {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.2);
}


.card .icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
    color: #007acc;
}
.contact-page {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}
.contact-page .intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #007acc;
    border-bottom: 3px solid #007acc;
    padding-bottom: 5px;
}

.contact-page .intro p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

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

.contact-card {
    background-color: #f7faff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}


.contact-card .icon {
    color: #007acc;
    margin-bottom: 10px;
}

.contact-card h2 {
    margin: 10px 0;
    font-size: 1.3rem;
}

.contact-card a {
    color: #007acc;
    font-weight: 500;
    text-decoration: none;
}

.map-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #007acc;
}
.infos-sante-page {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}
.infos-sante-page .intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #007acc;
    border-bottom: 3px solid #007acc;
    padding-bottom: 5px;
}

.infos-sante-page .intro p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}
 
.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .icon {
    font-size: 2.5rem;
    color: #007acc;
    margin-bottom: 15px;
}
.container .intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #007acc;
    border-bottom: 3px solid #007acc;
    padding-bottom: 5px;
}

.container .intro p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}
 
.info-card h2 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.page-horaires {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}
.page-horaires .intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #007acc;
    border-bottom: 3px solid #007acc;
    padding-bottom: 5px;
}

.page-horaires .intro p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}
 
.horaires-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.horaires-table th, .horaires-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
}

.horaires-table th {
    background-color: #007acc;
    color: white;
    font-weight: 600;
}

.horaires-table tbody tr:hover {
    background-color: #eef6fb;
}

.infos-complementaires {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.infos-complementaires article {
    flex: 1 1 280px;
      background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.infos-complementaires .icon {
    font-size: 2rem;
    color: #007acc;
    margin-bottom: 10px;
}

.infos-complementaires article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}



.page-equipe {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}
.page-equipe .intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #007acc;
    border-bottom: 3px solid #007acc;
    padding-bottom: 5px;
}

.page-equipe .intro p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}
 
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.equipe-card {
      background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    transition: transform 0.3s ease;
    text-align: center;

}

.equipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}

.photo-equipe {
    width: 90px;
    height: 400px;
 
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.equipe-card h2 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: #333;
}

.equipe-card ul {
    list-style: none;
    padding: 0;
    color: #444;
    font-size: 0.95rem;
}

.equipe-card li {
    margin: 8px 0;
}

.equipe-card i {
    color: #007acc;
    margin-right: 8px;
}

.page-rdv {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}
.page-rdv .intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #007acc;
    border-bottom: 3px solid #007acc;
    padding-bottom: 5px;
}

.page-rdv .intro p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}
 
.rdv-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.rdv-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.rdv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}

.rdv-card i {
    font-size: 2.5rem;
    color: #007acc;
    margin-bottom: 15px;
}

.rdv-card h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

.rdv-card p {
    font-size: 1rem;
    color: #444;
}

.rdv-info, .rdv-aide {
    margin-top: 40px;
    padding: 20px;
    background: white;
	 box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    border-left: 6px solid #007acc;
    border-radius: 8px;
	    transition: transform 0.3s ease;
}

.rdv-info h2, .rdv-aide h2 {
    color: #007acc;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.rdv-info ul {
    list-style: none;
    padding-left: 0;
}

.rdv-info li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.rdv-info li i {
    color: #007acc;
    margin-right: 10px;
}


.card-equipe p {
    margin: 5px 0;
    font-size: 1rem;
    color: #444;
}

.card-equipe i {
    margin-right: 8px;
    color: #007acc;
}


.modal {
  display: none;
  position: absolute;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 220%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content h2 {
  color: #007acc;
  margin-bottom: 20px;
}

.modal-content p,
.modal-content ul {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content input, .modal-content textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.modal-content .btn-primary {
  background-color: #007acc;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.modal-content .btn-primary:hover {
  background-color: #005fa3;
}

.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-section blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #007acc;
    background-color: #f0f8ff;
    font-style: italic;
    color: #444;
}


.info-card {
    max-width: 900px;
    margin: 40px auto;
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    
    text-align: center;
transition: transform 0.3s ease;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    line-height: 1.7;
}

.info-card h1 {
    text-align: center;
    color: #0077b6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-card p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #333;
}

.info-card blockquote {
    background-color: #e0f4ff;
    border-left: 4px solid #0077b6;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #34495e;
    border-radius: 10px;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}

.home-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0;
}

/* Carte Google */
.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Section de présentation */
.hero-home {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.hero-home h1 {
    font-size: 2.5rem;
    color: #006d77;
    margin-bottom: 0.5rem;
}

.hero-home p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-contact {
    background-color: #0077b6;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Grille navigation */
.grid-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.nav-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    transition: transform 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}

.nav-card h2 {
    margin-bottom: 0.5rem;
    color: #0077b6;
    font-size: 1.3rem;
}

.page-wrapper {
  max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 0rem;
}

.section-title h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #0077b6;
}

.section-title .subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 0rem;
}

.btn-contact {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
}

.arrow-down {
    width: 0;
    height: 0;
    margin: 1em auto 0 auto;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #0077cc; /* couleur bleue douce */
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    padding: 0.8rem;
    font-size: 0.95rem;
    text-align: center;
    color: #333;
}

.page-wrapper .intro h1 {
       font-size: 2.8rem;
    margin-bottom: 15px;
    color: #007acc;
    border-bottom: 3px solid #007acc;
    padding-bottom: 5px;
}

.page-wrapper .intro p {
   font-size: 1.15rem;
    margin-bottom: 30px;
}
 
/* --- Header --- */
.site-header {
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-container {
    height: 60px;
    width: auto;
    display: flex;
    align-items: center;
}

.site-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #003d4c;
    margin-left: 10px;
}

.main-nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #006d77;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #004e56;
}

.logo-image {
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
}



/* Conteneur général du header */
.site-header {
  background-color: #f8f9fa;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
}

/* Contenu du header */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Partie gauche avec logo + titre */
.header-right {
  display: flex;
  align-items: center;
}

/* Image du logo */
.logo-image {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-right: 10px;
}

/* Titre à droite du logo */
.site-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #003d4c;
}

/* Navigation */
.main-nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #006d77;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #004e56;
}




/* Barre de navigation */
.main-nav {
  flex-grow: 1;
  overflow-x: auto; /* permet le défilement horizontal si nécessaire */
  white-space: nowrap;
}

.nav-list {
  display: flex;
  flex-wrap: nowrap;       /* empêche le retour à la ligne */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 18px;
  align-items: center;
}

.nav-list li a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #006d77;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-list li a:hover {
  background-color: #e0f7fa;
  color: #004e56;
}

/* Scroll horizontal si trop de liens sur petits écrans */
@media (max-width: 768px) {
  .main-nav {
    padding-bottom: 10px;
  }

  .nav-list {
    gap: 10px;
  }

  .nav-list li a {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
}

.btn-fixed-rdv {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #006d77;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 1000;
  transition: background-color 0.3s ease;
  touch-action: none;
}

.btn-fixed-rdv:hover {
  background-color: #004f56;
}



/* Contenu de la modale */
.modal-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* Fermer bouton */
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Formulaire */
.modal-content form input,
.modal-content form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.modal-content form button {
  background-color: #006d77;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal-content form button:hover {
  background-color: #004f56;
}

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

.nav-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.nav-card:hover {
    transform: scale(1.02);
}

.nav-card h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.nav-card p {
    font-size: 1rem;
    color: #666;
}




/* Styles de base */
.modern-header {
  background-color: #0066cc;
  color: white;
  padding: 2px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* Menu horizontal desktop */
.modern-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.modern-nav ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.modern-nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

/* ----- HEADER ----- */
.modern-header {
  background-color: #0066cc;
  color: white;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

/* ----- BOUTON BURGER ----- */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* ----- NAVIGATION ----- */
.modern-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.modern-nav ul li a {
  text-decoration: none;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 5px;
  transition: background 0.3s;
}

.modern-nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}




/* Pour que le swiper prenne toute la largeur disponible */
.swiper {
  width: 100%;
  max-width: 1200px; /* ou ce que tu souhaites en max */
  margin: 0 auto; /* centrer */
}

/* S'assurer que les images dans les slides s'adaptent */
.swiper-slide img {
  width: 100%;      /* image remplit le slide horizontalement */
  height: auto;     /* garde les proportions */
  display: block;   /* enlève l'espace blanc sous l'image */
  object-fit: cover; /* optionnel, pour bien couvrir le conteneur */
}

/* Pour que le container général soit bien espacé */
.swiper-container-container {
  padding: 20px 10px;
}

/* Petit ajustement sur mobiles */
@media (max-width: 600px) {
  .swiper-container-container {
      width: 100%; 
	padding: 10px 5px;
  }
}

.page-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  overflow-x: visible;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}


.bottom-photo {
    margin: 1em auto;
    text-align: center;
}

.bottom-photo figure {
    margin: 0 auto;
    max-width: 800px;
}

.bottom-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bottom-photo img:hover {
    transform: scale(1.02);
}

.bottom-photo figcaption {
    margin-top: 0.75em;
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
}

/* Styles champs formulaire */
input, textarea {
  width: 100%;
  padding: 8px;
  margin: 6px 0 12px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Bouton */
input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* Styles spécifiques pour le texte de consentement */
label.consentement-label em {
  display: inline-block;
  font-style: italic;
  font-size: 0.95rem;
  color: #333;
  margin-top: 8px;
}

label.consentement-label a {
  color: #0066cc;
  text-decoration: underline;
}

label.consentement-label {
    cursor: pointer;
    font-style: italic;
    color: #333;
    font-size: 0.95rem;

    /* FLEX : aligne horizontalement + centre verticalement */
    display: flex;
    align-items: center;
    justify-content: center; /* CENTRE horizontalement le contenu label */
    gap: 2px;
  }

  /* Style lien */
  label.consentement-label a {
    color: #0066cc;
    text-decoration: underline;
  }

label.consentement-label input[type="checkbox"] {
  margin-right: 4px;          /* espace réduit entre checkbox et texte */
  vertical-align: middle;
  width: 16px;
  height: 16px;
}
}

#google-maps-consent {
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 4px 10px rgba(0, 122, 204, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

#google-maps-consent p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

#google-maps-consent button {
    background-color: #007acc;
    color: white;
    border: none;
    padding: 0.6em 1.2em;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#google-maps-consent button:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgb(0 74 153 / 0.25);
}

.nav-consent {
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: justify;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}

a {
    color: inherit;          /* hérite la couleur du parent (souvent noir ou gris) */
    text-decoration: none;   /* supprime le soulignement */
    font-weight: bold;       /* facultatif : met le lien en gras */
    transition: color 0.3s;  /* animation douce au survol */
}

a:hover {
    color: #0077cc;          /* couleur personnalisée au survol */
    text-decoration: underline; /* ou `none` si tu ne veux pas de soulignement */
}

/* CSS modale RGPD */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 2em;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.modal-content p {
    margin-bottom: 1em;
}

.btn-accept, .btn-decline {
    padding: 0.6em 1.2em;
    border: none;
    border-radius: 5px;
    margin: 0.5em;
    cursor: pointer;
    font-size: 1rem;
}

.btn-accept {
    background-color: #2a9d8f;
    color: white;
}

.btn-decline {
    background-color: #ccc;
    color: #333;
}

.btn-accept:hover {
    background-color: #21867a;
}

.btn-decline:hover {
    background-color: #aaa;
}

.privacy-link {
    display: block;
    margin-top: 0.5em;
    font-size: 0.9em;
}

.google-map-container {
    min-height: 300px; /* pour éviter que le bloc soit vide et tout écrasé avant le consentement */
    margin-bottom: 0em;
	}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
    max-width: 700px; /* Réduction de la grille */
    margin: 0 auto;
}

.equipe-card {
    background-color: white;
    padding: 1em; /* Légèrement réduit */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.photo-equipe {
    width: 100%;
    aspect-ratio: 1 / 1; /* Carré toujours */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.8em;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.equipe-card h2 {
    margin: 0.4em 0 0.6em;
    font-size: 1.05em;
}

.equipe-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipe-card li {
    margin-bottom: 0.4em;
    font-size: 0.9em;
}

.equipe-card i {
    margin-right: 0.4em;
    color: #2a9d8f;
}


a.privacy-link {
  color: #fff;           /* bleu personnalisé */
  text-decoration: underline; /* pour souligner */
  font-weight: bold;
}
a.privacy-link:hover {
  color: #fff;           /* bleu foncé au survol */
}

a.logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
}

a.lien-bleu {
  color: #0077cc;           /* bleu personnalisé */
  text-decoration: underline; /* pour souligner */
  font-weight: bold;
}
a.lien-bleu:hover {
  color: #005fa3;           /* bleu foncé au survol #fff */
}





.prestation-item .icon {
    font-size: 2rem;
    color: #007acc;
    margin: 0 auto 15px auto;
    display: block;
    text-align: center;
}


a.btn-contact {
    color: #fff;
    font-size: 1.1rem;
}






/* === Responsive pour mobile === */
@media screen and (max-width: 768px) {
    .section-title h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .info-box {
        font-size: 0.95rem;
        padding: 20px;
    }

    .btn-contact {
        width: 100%;
        box-sizing: border-box;
        font-size: 1rem;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .grid-navigation {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.5em;
    }
}




/* Responsive */
@media (max-width: 600px) {
    .page-prestations {
        padding: 0 15px;
    }
}



/* Responsive */
@media (max-width: 600px) {
    .page-coordonnees {
        padding: 0 15px;
    }
    .page-coordonnees .intro h1 {
        font-size: 2.2rem;
    }
    .map-wrapper iframe {
        height: 280px;
    }
}


/* Responsive pour petits écrans */
@media (max-width: 768px) {
    .logo-image {
        max-height: 40px;
    }
}


/* Responsive */
@media (max-width: 768px) {
  .logo-image {
    height: 40px;
  }

  .site-title {
    font-size: 1.1rem;
  }

  .main-nav ul {
    gap: 10px;
    font-size: 0.9rem;
  }

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

  .main-nav {
    width: 100%;
    margin-top: 10px;
  }
  
  
}



/* Media Queries : Responsive pour téléphone */
@media screen and (max-width: 768px) {
    .section-title h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn-contact {
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .grid-navigation {
        grid-template-columns: 1fr; /* une seule colonne sur mobile */
    }

    .nav-card {
        padding: 15px;
    }

    .nav-card h2 {
        font-size: 1.2rem;
    }

    .nav-card p {
        font-size: 0.95rem;
    }
}




/* ----- RESPONSIVE MOBILE ----- */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .modern-nav {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    background-color: linear-gradient(135deg, #0a9396, #94d2bd);
  }

  .modern-nav.open {
    max-height: 720px;
  }

  .modern-nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }

  .modern-nav ul li {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .modern-nav ul li a {
    display: block;
    padding: 1rem;
  }

  .header-container {
    flex-direction: column;
    align-items: flex;

  
  }

  .logo {
    margin-bottom: 0.5rem;
	
  }
}

/* Responsive : 1 colonne */
@media (max-width: 768px) {
    .equipe-grid {
        grid-template-columns: 1fr;
    }
}







.footer-urbain {
  background: url('https://cabinetatlantique.fr/assets/foot2.png') repeat center bottom;
  background-size: contain;
  height: 150px; /* Ajustable selon ton design */
  position: relative;
  color: #0077b;
  display: flex;
  align-items: flex-end;
  justify-content: bottom;
  padding-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  text-align: center;
  /* background: rgba(0, 0, 0, 0.3);  effet léger pour lisibilité */
  padding: 5px 15px;
  border-radius: 8px;
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement */
  gap: 10px;               /* espace entre le texte et le lien */
  flex-wrap: nowrap;  
  position: relative;          /* reste en bas même si on scrolle */
  bottom: 0;                /* colle en bas de la fenêtre */
  left: 50%;                /* point de référence au milieu */
  transform: translateX(-50%); /* centre horizontalement */
  margin-top: 150px; /* ← décale le footer vers le bas */
  margin-bottom: 0px;
  
  
}

.footer-content a {
  margin-left: 8px;  
  color: #0077b6;
  text-decoration: underline;
  font-weight: 500;
}

.footer-content p {
  color: #0077b6;
  margin: 0;
  white-space: nowrap;     /* force tout le texte à rester sur la même ligne */
}


/* ✅ Adaptation mobile */
@media screen and (max-width: 750px) {
  .footer-urbain {
    background: url('https://cabinetatlantique.fr/assets/foot2.png') repeat center bottom;
	min-height: 90px;
    padding-bottom: 5px;
    background-size: cover; /* Sur mobile, on garde l'image entière */
  }
  .footer-content {
    font-size: 0.8em;
    padding: 4px 8px;
	

  }
   .footer-content p {
    flex-direction: column;   /* texte et lien en colonne */
    white-space: normal;      /* autorise le retour à la ligne */
    text-align: center;
    gap: 4px;                 /* espace vertical plus petit */
  }
}




/* Style du menu parent */
.modern-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.modern-nav ul li {
  position: relative;
}

/* Liens */
.modern-nav ul li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}



/* Cache toujours par défaut */
nav .dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to right, #009bd8, #00b4d8);
  min-width: 180px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-direction: column;
  z-index: 1000;
}

/* Affiche seulement au survol */
nav li.dropdown:hover > .dropdown-menu {
  display: block !important;
}

/* Liens internes */
nav .dropdown-menu li a {
  padding: 8px 12px;
  color: #fff;
  display: block;
  text-decoration: none;
  white-space: nowrap;
}

nav .dropdown-menu li a:hover {
  background: #00b4d8;
}









.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.modal .modal-content {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  position: relative;
  margin: auto;
}





.photo-logo {
    width: 55px;
    height: 55px;
 padding-top: 0px;
    border-radius: 50%;
    margin-bottom: 0px;
}







.logo-block {
  display: flex;
  flex-direction: row;
  align-items: center ;
}

.logo-block .photo-logo {
  display: block;
  margin-inline: 10px /* ✅ réduit l’espace entre image et texte */
   /* ✅ ajuste la hauteur de l'image */
}

.logo-block .logo {
  line-height: 1; /* ✅ réduit l’espace entre les deux lignes de texte */
  text-align: left;
}




.modern-header {
  height: auto !important;
  padding: 0px 0;
}


.modern-header {
  position: relative;
  background: linear-gradient(to right, #0077b6, #00b4d8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2px 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden; /* Pour contenir la pseudo-couche */
}



.modern-header,
.header-container,
.modern-nav,
{
  overflow: visible; /* ✅ Permet au menu de dépasser */
}



@media screen and (max-width: 768px) {
  /* Toujours afficher la sous-liste */
  .dropdown-menu {
    display: block !important;
    position: static !important;
    background: transparent !important;
    padding-left: 10px;
  }

  /* Supprimer l'icône déroulante */
  .dropdown-toggle::after {
    content: "" !important;
  }
}
/* Bouton flottant */
.btn-fixed-rdv {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #006d77;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  z-index: 999;
  touch-action: none;
}








.btn-fixed-rdv {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
}



@media screen and (min-width: 769px) {
  .modern-header,
  .header-container,
  .modern-nav {
    overflow: visible !important; /* ✅ Laisse sortir le menu */
  }

  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
	  border-radius: 6px;
    top: 100%;
    left: 0;
    z-index: 9999;
  }
}


@media screen and (max-width: 768px) {
  .dropdown-menu {
    display: none;
  }
  .dropdown.open .dropdown-menu {
    display: block;
    position: static;
  }
}










.section-title h1 {
  margin-bottom: 0.3em; /* ✅ réduit l'espace après le titre */
}

.section-title .subtitle {
  margin-top: 0;
  margin-bottom: 0.5em; /* ✅ réduit l'espace entre le sous-titre et le bouton */
}

.section-title p {
  margin: 0.2em 0; /* ✅ réduit l’espace vertical global */
}

.btn-contact {
  margin-top: 0.2em; /* ou 0 si tu veux coller au texte */
}



.nav-card2 p {
    font-size: 1rem;
    color: #666;
}



.rdv-info:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}

.rdv-aide:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 122, 204, 0.2);
}















.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.modern-header.hide {
  transform: translateY(-100%);
}











