/* ================================
   CSS Document - AQUATAO
   ================================
   Ici on définit le style visuel du site.
   Chaque bloc a un rôle précis (texte, images, boutons, FAQ, etc.)
================================ */

/* --- Styles généraux pour le texte --- */
p {
    display: block;              /* chaque paragraphe est un bloc */
    margin-block-start: 1em;     /* espace au-dessus */
    margin-block-end: 1em;       /* espace en dessous */
    margin-inline-start: 0px;    /* pas de marge à gauche */
    margin-inline-end: 0px;      /* pas de marge à droite */
    text-align: left;            /* texte aligné à gauche */
}

/* --- Bandeau style "chapeau" --- */
.chapeau {
    display: block;
    padding: 20px;
    text-align: center;           /* texte centré */
    background-color: #145b888c;  /* bleu transparent */
    color: white;                 /* texte blanc */
    font-size: 1.2em;
    font-weight: 600;             /* texte un peu plus gras */
}

/* --- Images arrondies (avatars, photos de profil) --- */
.round_me { border-radius: 50%; }                        /* image totalement ronde */
.round_me_left { border-radius: 50%; float: left; margin-right: 1em; }  /* ronde + collée à gauche */
.round_me_right { border-radius: 50%; float: right; margin-left: 1em; } /* ronde + collée à droite */

/* --- Alignement des images --- */
.image_center {
    margin-right: auto !important;
    margin-left: auto !important;
    display: block;               /* centre l’image */
}
.image_left {
    float: left;
    margin-right: 1em !important;
    margin-left: 0em !important;
}
.image_right {
    float: right;
    margin-left: 1em !important;
    margin-right: 0em !important;
}

/* --- Bouton de réservation --- */
.reservationc {
    text-decoration: none !important;
    max-width: 300px;
    display: block;
    margin-left: auto;             /* centre le bouton */
    margin-right: auto;
    padding: 15px;
    background-color: #B6308A;     /* couleur rose/violet */
    font-size: 16px;
    color: #FFF !important;        /* texte blanc */
    border-radius: 10px;           /* coins arrondis */
    text-align: center;
}
.reservationc:hover { text-decoration: underline !important; }

/* --- Mise en page réservation (2 colonnes) --- */
.ctresa { display: block; width: 50%; float: left; text-align: center; }

/* --- Zones d’édition (TinyMCE / Admin) --- */
#tinymce .clear {
    border: dotted gray 3px;
    padding: 3px;
    height: 17px;
}
#tinymce .incfile {
    border: dotted gray 3px;
    padding: 3px;
    height: 17px;
    margin-bottom: 5px;
}
#tinymce .youtube {
    border: dotted gray 3px;
    padding: 3px;
}

/* --- Classe utilitaire pour "vider" un float --- */
.clear {
    padding: 0;
    margin: 0;
    clear: both;
    float: none;
    font-size: 0;
    line-height: 0;
}

/* --- Titres --- */
h1, h2, h3, h4, h5, h6 {
    display: block;
    font-weight: 600;
}
h1 {
    font-size: 2em;
    line-height: 2em;
    color: #b32e8b; /* violet principal */
}

/* --- Tableaux stylisés --- */
table.tableau_style1, table.tableau_style1 td {
    border: none;
    background-color: #f5f5f5;
}
table.tableau_style1 td:not(:last-child) {
    border-right: 2px solid #9d9ea0; /* ligne verticale */
}
table.tableau_style1 tr:not(:last-child) td {
    border-bottom: 2px solid #9d9ea0; /* ligne horizontale */
}
table.tableau_style1 td { padding: 5px; }

/* --- Texte important (strong) --- */
strong { color: #FF0072; }

/* --- Tags sous forme de boutons (blog) --- */
.blog-tags {
    display: flex;
    flex-wrap: wrap;        /* retour à la ligne si trop de boutons */
    gap: 8px;               /* espace entre les boutons */
    margin: 10px 0 20px 0;
    justify-content: center;/* centre les boutons */
}
.blog-tags .tag-btn {
    background-color: #235984;   /* bleu */
    color: #ffffff !important;  /* texte blanc */
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;        /* empêche le retour à la ligne */
}
.blog-tags .tag-btn:hover {
    background-color: #a64993;  /* rose au survol */
    color: #ffffff !important;
}
/* Adaptation mobile */
@media (max-width: 600px) {
    .blog-tags {
        gap: 6px;
    }
    .blog-tags .tag-btn {
        flex: 1 1 calc(50% - 6px); /* 2 boutons par ligne */
        text-align: center;
    }
}

/* --- FAQ (Questions/Réponses) --- */
.faq {
    /* max-width: 800px;   /* largeur max */
    margin: 0 auto;     /* centrage */

}

.faq-item {
    margin: 10px auto;  /* centrage horizontal de chaque item */
    /* max-width: 600px;   /* largeur max de chaque item */
    text-align: left;   /* texte à l'intérieur de l'item à gauche */
		}
.faq-question {
    cursor: pointer;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 6px;
	margin-top: 5px;
}
.faq-answer {
    padding: 1em !important;
    border-left: 3px solid #0077b6;
    background: #fafafa;
    margin-top: 5px;
    border-radius: 4px;
}

.content-home .faq-answer {
	display: none;     /* cachée par défaut mais que sur le front */
}

/* --- Carousels AQUATAO --- */
.aq-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 16px auto;
}
.aq-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}
.aq-slide {
    flex: 0 0 auto;
    padding: 0 8px;
    box-sizing: border-box;
}
.aq-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* --- Boutons de navigation carousel --- */
.aq-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #235984;
    color: #ffffff;
    font-size: 22px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
}
.aq-btn:hover { background: #a64993; }
.aq-btn.prev { left: 8px; }
.aq-btn.next { right: 8px; }

/* --- Points de pagination carousel --- */
.aq-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.aq-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #949598;
    cursor: pointer;
}
.aq-dot.active { background: #235984; }

/* --- Option : limiter la hauteur des images témoignages --- */
.testimonials .aq-slide img {
    max-height: 540px;
    object-fit: contain;
}

html {
  scroll-behavior: smooth;
}

/* --- REQUIREMENTS (pré-requis) --- */
.requirements {
  display: grid;
  gap: 1.2rem;
  margin: 2rem auto;
  max-width: 800px;
}

.req-item {
  background: #f9fafb;
  border-left: 5px solid #7ab853;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.req-item h3 {
  color: #7ab853;
  margin-top: 0;
  font-family: 'Good Times', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.req-item p {
  margin: 0.4rem 0 0;
  color: #444;
}

/* --- SCHEDULE (déroulement) --- */
.schedule {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2.5rem auto;
  max-width: 800px;
}

.slot {
  background: #ffffff;
  border-left: 5px solid #a64993;
  padding: 1rem 1.4rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.slot .time {
  font-weight: bold;
  color: #a64993;
  font-family: 'Good Times', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.slot .desc {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .req-item, .slot {
    padding: 1rem 1rem;
  }

  .slot .desc {
    font-size: 0.95rem;
  }
}


.req-item, .slot {
  position: relative;
  background: #ffffff;
  border-left: 5px solid #7ab853;
  padding: 1.4rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}
