@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f1ee; /* beige clair */
  overflow-x: hidden;
  font-family: "Gill Sans MT", "Gill Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}

p {
  font-family: "Inter", sans-serif;
}

:root {
  --gris:#494949;
  --rouge: #C30045;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--rouge);
}

img {
  vertical-align: bottom;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ----------------
   |   HEADER     |
   ---------------- */
#site-header {
  background-color: #C30045;
  width: 100%;
  position: relative;
}

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

/* Logo et nom */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: -1rem;
  margin-right: 10px;
  z-index: 1002;
}

.header-logo img {
  height: 60px;
  width: auto;
}

.site-title {
  font-family: "Arvo", serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

/* Barre de recherche */
form[role=search] {
  display: flex;
  align-items: center;
}

form[role=search] input[type=search] {
  padding: 8px 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  width: 250px;
}

form[role=search] button[type=submit] {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 8px 12px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  color: white;
}

form[role=search] button[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Navigation */
.header-nav > ul {
  display: flex;
  align-items: center;
  gap: 1px;
}

.header-nav a {
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.3s ease;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.header-nav a:hover {
  opacity: 0.7;
}

.contact-button {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 8px 16px;
  height: 100%;
}

/* Menu déroulant desktop */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "\f0d7"; /* icône caret-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* obligatoire pour solid */
  position: absolute;
  right: 5px;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #C30045;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0;
  margin: 0;
  list-style: none;
  border: none;
}

.dropdown-menu li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  color: white;
  padding: 12px 20px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Drapeau UK */
.header-nav ul li img[alt=uk] {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Bouton burger */
.burger-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1002;
}

.burger-menu span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MOBILE */
@media screen and (max-width: 900px) {
  .burger-menu {
    display: flex;
  }
  form[role=search] {
    display: flex;
    width: 100%;
    margin-top: 10px;
  }
  .header-container {
    flex-container: container;
  }
  .header-nav {
    display: none;
    width: 100%;
    background-color: #C30045;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px 20px 20px;
    z-index: 1001;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .header-nav.active {
    display: block;
  }
  .header-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .header-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .header-nav > ul > li:last-child {
    border-bottom: none;
  }
  .header-nav a {
    display: block;
    width: 100%;
    padding: 14px 0;
  }
  .contact-button {
    background-color: transparent;
    border-radius: 0;
    padding: 14px 0;
  }
  /* Sous-menu mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    min-width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    margin-top: 0;
    display: block;
  }
  .dropdown-menu li a {
    padding: 12px 15px;
  }
  .header-nav ul li img[alt=uk] {
    margin: 12px 0;
  }
}
#site-footer {
  background: #000;
  color: #fff;
  padding: 0 0 20px 0;
  font-family: Arial, sans-serif;
}

.footer-top {
  background-color: #dadada;
  padding: 30px 20px;
}

.footer-top-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.footer-top-logo {
  flex: 0 0 auto;
  margin-right: 20px;
}

.footer-top-logo img {
  height: 80px;
  width: auto;
}

.footer-top-content {
  flex: 1;
}

.footer-top-content p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
  color: #333;
}

.footer-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h5 {
  color: #e63946;
  font-style: italic;
}

.footer-logo img {
  width: 100px;
  height: auto;
}

.footer-contact {
  flex-direction: row;
  align-items: center;
  gap: 25px;
}

.footer-contact-info h3 {
  margin: 5px 0;
  font-size: 18px;
}

.footer-contact-info p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-horaires h4 {
  margin-bottom: 10px;
}

.footer-horaires p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 6px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  margin-right: 60px;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

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

.footer-social i {
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #ccc;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
  background-color: #f77f00;
  transform: scale(1.1);
}

/* Menu déroulant */
.footer-dropdown {
  position: relative;
}

.footer-dropdown-toggle {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
  display: inline-block;
}

.footer-dropdown-toggle::after {
  content: "▼";
  position: absolute;
  right: 5px;
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #C30045;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0;
  margin: 0;
  list-style: none;
  border: none;
}

.footer-dropdown-menu li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-dropdown-menu li:last-child {
  border-bottom: none;
}

.footer-dropdown-menu li a {
  color: white;
  padding: 12px 20px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}

/* Ouverture au survol seulement sur desktop */
@media (min-width: 769px) {
  .footer-dropdown:hover .footer-dropdown-menu {
    display: block;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .footer-top-wrap {
    flex-direction: column;
    text-align: center;
  }
  .footer-top-logo {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .footer-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer-col {
    align-items: center;
    width: 100%;
  }
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .footer-contact-info {
    text-align: center;
  }
  .footer-menu ul {
    text-align: center;
  }
  .footer-social {
    align-items: center;
    margin-right: 0;
  }
  .footer-dropdown {
    width: 100%;
  }
  .footer-dropdown-menu {
    display: none;
    position: static;
    min-width: auto;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
  }
  .footer-dropdown.active .footer-dropdown-menu {
    display: block;
  }
  #scrollTopBtn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    right: 15px;
    bottom: 15px;
  }
}
.formulaire,
.formulaire p,
.formulaire label,
.formulaire input,
.formulaire textarea,
.formulaire select,
.contact-info,
.transport_info,
.transport_eco li,
.transport_commun li,
#carte_ville p {
  font-family: "Gill Sans MT", GillSans, sans-serif;
}

/* SECTION FORMULAIRE */
.formulaire {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.formulaire h1 {
  color: var(--rouge);
  text-align: center;
  margin-bottom: 10px;
}

.formulaire_intro {
  text-align: center;
}

.success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 20px 0;
}

.formulaire .subtitle {
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

.wrap {
  width: 100%;
}

.contact-container {
  background: #F4F1EE;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-info .detail {
  margin-bottom: 20px;
}

.contact-info .detail h3 {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 30px;
}

.contact-info .detail p {
  font-size: 20px;
}

.checkbox-group span {
  font-size: 0.9rem; /* Réduit la taille de la police des <span> */
}

.devis-columns {
  display: flex;
  gap: 20px;
  width: 100%;
}

.devis-column {
  flex: 1;
  min-width: 0; /* Permet aux colonnes de rétrécir en dessous de leur contenu */
}

.social-media {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 30px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
}

#formcontact {
  flex: 1;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-group label {
  display: block;
  margin-bottom: 10px;
}

input[type=submit] {
  background: var(--rouge);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

input[type=submit]:hover {
  background: var(--rouge);
}

/* Style pour le menu déroulant */
.custom-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.form-group {
  margin-bottom: 20px;
}

/* Style pour l'e-mail */
.detail h3 {
  font-weight: bold;
  margin-bottom: 5px;
}

.detail p {
  margin: 0;
  font-family: "Gill Sans MT", GillSans, sans-serif;
  text-transform: none;
  font-size: 14px;
}

/* SECTION CARTE VILLE */
#carte_ville {
  color: #333;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  font-family: "Gill Sans MT", GillSans, sans-serif;
  margin-bottom: 50px;
}

#carte_ville h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--rouge);
}

#carte_ville > p {
  text-align: center;
  margin-bottom: 20px;
}

/* Conteneur principal pour la carte et les infos */
.map_and_info {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Conteneur de la carte */
/* Conteneur de la carte */
.map_container {
  flex: 2;
  min-width: 400px;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  height: 450px; /* Hauteur fixe pour éviter les sauts de mise en page */
}

/* Assure que l'iframe remplit tout l'espace du conteneur */
.map_container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Conteneur des informations de transport */
.transport_info {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #F4F1EE;
}

/* Bloc d'informations pour chaque type de transport */
.transport_eco, .transport_commun {
  background-color: transparent;
  margin-bottom: 20px;
}

.transport_eco p, .transport_commun p {
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Conteneur des icônes */
.icon {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}

.icon i {
  font-size: 24px;
  color: var(--rouge);
  margin-right: 10px;
}

/* Style des listes */
.transport_eco ul, .transport_commun ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* Style des listes dans la section "Plans d’accès" */
.transport_eco li, .transport_commun li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  font-size: 17px;
  font-family: "Gill Sans MT", GillSans, sans-serif;
  line-height: 1.4; /* Pour un espacement cohérent */
}

.transport_eco li::before, .transport_commun li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rouge);
  font-weight: bold;
}

@media (max-width: 768px) {
  .formulaire {
    padding: 15px;
    font-size: 1rem;
  }
  .contact-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .devis-columns {
    flex-direction: column;
    gap: 0;
  }
  .social-icons {
    gap: 12px;
  }
  .contact-info .detail h3 {
    font-size: 24px;
  }
  .contact-info .detail p {
    font-size: 16px;
  }
  .map_and_info {
    flex-direction: column;
  }
  .map_container,
  .transport_info {
    min-width: 0;
    width: 100%;
  }
  .map_container {
    height: 300px;
  }
  #carte_ville {
    padding: 15px;
  }
}
/* Block 1 */
.block1 {
  background-color: #fff;
  padding: 50px 20px;
  text-align: left;
}

.block1 .container {
  max-width: 1200px;
  margin: 0 auto;
}

.block1 h2 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
  margin-left: 30px;
}

.block1 p {
  font-size: 1.3em;
  color: #666;
  max-width: 800px;
  margin: 0 0 40px 0;
  line-height: 1.4;
  margin-left: 13rem;
}

/* Conteneur des services */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

/* Chaque service */
.service {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay par défaut */
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: background 0.3s ease;
}

/* Overlay rouge au survol */
.service:hover::before {
  background: rgba(195, 0, 69, 0.82);
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service:hover img {
  transform: scale(1.05);
}

/* Contenu au-dessus de l'image */
.service-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: white;
}

/* Titre */
.service h3 {
  margin: 0;
  font-size: 1.5em;
  font-weight: bold;
  color: white;
  transition: transform 0.3s ease;
}

.service h3 a {
  color: white;
  text-decoration: none;
}

.service h3 a:hover {
  text-decoration: none;
}

/* Texte caché par défaut */
.service-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease;
  margin-top: 12px;
}

.service-text p {
  margin: 0 0 8px;
  font-size: 0.95em;
  line-height: 1.4;
  color: white;
}

/* Au survol : le texte apparaît */
.service:hover .service-text {
  opacity: 1;
  max-height: 250px;
  transform: translateY(0);
}

/* Le titre remonte légèrement */
.service:hover h3 {
  transform: translateY(-5px);
}

/* Bouton */
.service-btn {
  margin-top: 12px;
  padding: 8px 16px;
  background: white;
  color: #C30045;
  font-weight: 600;
  font-size: 0.9em;
  border-radius: 4px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Hover effet bouton */
.service-btn:hover {
  background: #f4f1ee;
}

/* Apparition au hover */
.service:hover .service-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .block1 {
    padding: 40px 15px;
  }
  .block1 h2 {
    font-size: 1.8em;
    line-height: 1.2;
  }
  .block1 p {
    font-size: 1.1em;
    max-width: 100%;
    margin: 0 auto 30px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service {
    max-width: 100%;
  }
}
/* Block 2 */
.block2 {
  background-color: #e6005c;
  padding: 25px 20px;
  color: white;
}

.block2 .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Zone texte */
.block2 .content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
}

/* Titre gauche */
.block2 h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  white-space: nocontainer;
  margin-left: 100px;
}

/* Texte centre */
.block2 p {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0;
  max-width: 600px;
  text-align: center;
}

/* Bouton droite */
.block2 .button-container {
  flex-shrink: 0;
  margin-right: 100px;
  font-size: 30px;
}

.block2 .button {
  display: inline-block;
  background: white;
  color: #e6005c;
  padding: 12px 90px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.block2 .button:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .block2 .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .block2 .content {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }
  .block2 h2 {
    white-space: normal;
    margin-left: 0;
    font-size: 1.6rem;
  }
  .block2 p {
    font-size: 1rem;
    max-width: 100%;
  }
  .block2 .button-container {
    margin-right: 0;
    font-size: 20px;
  }
  .block2 .button {
    padding: 12px 30px;
  }
}
#actu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

#actu h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.carousel-coverflow {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 60px;
  box-sizing: border-box;
}

.carousel-stage {
  position: relative;
  height: 520px;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}

.carousel-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.carousel-content {
  padding: 18px;
  text-align: left;
}

.carousel-content h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
  color: #222;
}

.carousel-date {
  margin: 0;
  font-size: 0.95rem;
  color: #888;
}

.carousel-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

/* carte active */
.carousel-card.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

/* carte gauche */
.carousel-card.is-left {
  transform: translate(-130%, -50%) scale(0.82);
  opacity: 0.6;
  z-index: 2;
}

/* carte droite */
.carousel-card.is-right {
  transform: translate(30%, -50%) scale(0.82);
  opacity: 0.6;
  z-index: 2;
}

/* cartes cachées */
.carousel-card.is-hidden-left {
  transform: translate(-210%, -50%) scale(0.65);
  opacity: 0;
  z-index: 1;
}

.carousel-card.is-hidden-right {
  transform: translate(110%, -50%) scale(0.65);
  opacity: 0;
  z-index: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 46px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .carousel-stage {
    height: 480px;
  }
  .carousel-card {
    width: 300px;
  }
  .carousel-card img {
    height: 220px;
  }
  .carousel-card.is-left {
    transform: translate(-115%, -50%) scale(0.8);
  }
  .carousel-card.is-right {
    transform: translate(15%, -50%) scale(0.8);
  }
}
@media (max-width: 768px) {
  .carousel-coverflow {
    padding: 20px 50px;
  }
  .carousel-stage {
    height: 440px;
  }
  .carousel-card,
  .carousel-card.is-active,
  .carousel-card.is-left,
  .carousel-card.is-right,
  .carousel-card.is-hidden-left,
  .carousel-card.is-hidden-right {
    width: 100%;
    max-width: 320px;
    transform: translate(-50%, -50%) scale(1);
  }
  .carousel-card:not(.is-active) {
    opacity: 0;
  }
}
/* Block 4 */
.block4 {
  background-color: #dadada;
  padding: 30px 20px;
}

.block4 .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.block4 .logo {
  flex: 0 0 auto;
  margin-right: 20px;
}

.block4 .logo img {
  height: 80px;
  width: auto;
}

.block4 .content {
  flex: 1;
}

.block4 p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .block4 .container {
    flex-direction: column;
    text-align: center;
  }
  .block4 .logo {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.aide-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.aide-container h1 {
  text-align: center;
  color: var(--rouge);
  margin-bottom: 20px;
}

.aide-container > p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.aide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.aide-section {
  background-color: #f4f1ee;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.aide-section h2 {
  color: var(--rouge);
  margin-bottom: 15px;
  text-align: center; /* Centrer les titres des blocs */
}

.aide-section > p {
  margin-bottom: 20px;
  font-style: italic;
  text-align: center; /* Centrer les paragraphes d'introduction */
}

/* Style pour les éléments repliables */
details {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background-color: #fff;
}

summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--rouge);
  outline: none;
  display: block;
  padding: 5px 0;
  font-size: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  margin-right: 10px;
  font-weight: bold;
}

details[open] summary::after {
  content: "-";
}

/* Style des listes dans les détails */
details ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0 0;
}

details li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: #555;
}

.aide-container a {
  color: black;
  text-decoration: underline;
}

.aide-container a:hover {
  text-decoration: none;
}

/* Style pour le bouton de téléchargement */
.download-button {
  display: block; /* Pour centrer le bouton */
  width: fit-content;
  margin: 20px auto 0; /* Centrer horizontalement */
  padding: 10px 20px;
  background-color: var(--rouge);
  color: white;
  text-decoration: none;
  border-radius: 25px;
}

.download-button:hover {
  background-color: var(--rouge);
}

.details-content ul {
  margin: 0;
}

/* Supprime TOUTES les puces */
ul {
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Supprime les puces ajoutées manuellement via ::before */
details li::before {
  display: none !important;
}

/* Style pour les colonnes du lexique */
.lexique-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.lexique-colonne {
  width: 100%;
}

.lexique-colonne ul {
  margin: 0;
  padding: 0;
}

.lexique-colonne li {
  margin-bottom: 15px;
  padding-left: 0;
}

.lexique-colonne strong {
  color: var(--rouge);
}

/* Assure que details-content n'interfère pas avec les colonnes */
.details-content {
  width: 100%;
  display: block; /* Remplace le flex si nécessaire */
}

/* Style pour les lignes avec image */
.li-with-image {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Aligne le texte à gauche et l'image à droite */
  gap: 10px;
  width: 100%; /* Prend toute la largeur disponible */
}

.li-image {
  width: 50px; /* Ajuste la taille de l'image selon tes besoins */
  height: auto;
  flex-shrink: 0; /* Empêche l'image de rétrécir */
}

.li-text {
  flex: 1; /* Permet au texte de prendre l'espace restant */
  text-align: left; /* Aligne le texte à gauche */
}

.details-content {
  display: flex;
  justify-content: space-between; /* Aligne le texte à gauche et l'image à droite */
  align-items: flex-start; /* Aligne les éléments en haut */
  gap: 20px; /* Espace entre le texte et l'image */
}

.details-content img {
  max-width: 200px; /* Ajuste la taille maximale de l'image */
  height: auto;
  flex-shrink: 0; /* Empêche l'image de rétrécir */
}

.details-content p {
  flex: 1; /* Permet au paragraphe de prendre tout l'espace restant */
  margin: 0; /* Supprime les marges par défaut */
}

@media (max-width: 768px) {
  .aide-container {
    padding: 15px;
    margin-top: 25px;
    margin-bottom: 40px;
  }
  .aide-container h1 {
    font-size: 2rem;
  }
  .aide-container > p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .aide-grid,
  .lexique-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .aide-section {
    padding: 15px;
  }
  summary {
    font-size: 15px;
  }
  details li {
    font-size: 14px;
  }
  .details-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .details-content img {
    max-width: 100%;
    width: 100%;
  }
  .li-with-image {
    flex-direction: column;
    align-items: flex-start;
  }
  .li-image {
    width: 80px;
  }
  .download-button {
    width: auto;
    text-align: center;
  }
}
/* ACTUALITÉS */
.actualites {
  font-family: "Gill Sans MT", GillSans, sans-serif;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  background: transparent;
}

.actualites h1 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.actualites > p {
  margin-bottom: 40px;
  color: #666;
}

.actualites > p a {
  color: #e53e3e;
  text-decoration: none;
}

.actualites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.actu-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #f4f1ef;
  min-height: 200px;
  border: 1px solid #e0e0e0;
}

.actu-item:hover {
  transform: translateY(-5px);
}

.actu-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.actu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.actu-content {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.actu-item h2 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 5px;
  color: #333;
}

.actu-item h2 a {
  color: inherit;
  text-decoration: none;
}

.actu-item h2 a:hover {
  text-decoration: underline;
}

.actu-item p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  flex-grow: 1;
  font-family: "Gill Sans MT", GillSans, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .actualites-grid {
    grid-template-columns: 1fr;
  }
}
/* Style pour le conteneur du paginateur */
.pagination {
  margin-top: 30px;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  clear: both; /* Évite les problèmes de flottement */
}

/* Style des liens du paginateur */
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  border-radius: 3px;
}

/* Style pour la page actuelle */
.pagination .current {
  background: var(--rouge); /* Utilise ta variable CSS pour la couleur rouge */
  color: white;
  border-color: var(--rouge);
}

/* Style au survol des liens */
.pagination a:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

/* General Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}

/* Header Styles */
header {
  background-color: #b3235c;
  padding: 1rem 0;
  color: white;
}

/* Section Styles */
section {
  padding: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  column-gap: 35px;
  row-gap: 45px;
}

.container {
  text-align: center;
}

.container h1 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.onglet_texte {
  text-align: center;
}

/* texte */
.contenu {
  width: 50%;
}

.contenu h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: left;
}

.contenu p {
  font-size: 1rem;
  text-align: left;
}

.produit {
  display: flex;
  align-items: flex-start; /* clé du problème */
  gap: 20px;
}

.produit img {
  width: 45%;
  height: 250px;
  object-fit: contain;
  object-position: top; /* très important */
  display: block;
  flex-shrink: 0;
}

.contenu {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligne le contenu en haut */
  padding-top: 0;
}

.contenu h2 {
  font-size: 2rem;
  margin: 0;
  margin-bottom: 15px;
}

.contenu p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0;
}

.produit h2 {
  font-size: 1.2rem;
  margin: 0;
  text-align: left; /* plus propre */
}

.produit p {
  font-size: 0.9rem;
  margin-top: 8px;
  text-align: left;
}

/* ligne impaire */
.produit:nth-child(4n+1),
.produit:nth-child(4n+2) {
  flex-direction: row;
}

/* ligne paire */
.produit:nth-child(4n+3),
.produit:nth-child(4n+4) {
  flex-direction: row-reverse;
}

.texte-devis {
  text-align: center;
  margin-top: 40px; /* espace au-dessus du bloc */
}

.btn-devis {
  display: inline-block;
  background: #C30045;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-devis:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
#boutique_intro {
  width: 100%;
  margin: 0;
  padding: 0;
}

#boutique_intro .img_intro {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 0;
  padding: 0 0 0 40px;
  overflow: hidden;
  box-sizing: border-box;
}

#boutique_intro .img_intro h2 {
  color: white;
  font-size: 80px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0;
  background-color: transparent;
}

#boutique_intro .boutique_texte {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#boutique_intro .boutique_texte p {
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

/* CTA */
.boutique-cta,
.contact-cta {
  background: #e6005c;
  color: white;
  padding: 40px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text {
  max-width: 600px;
}

.cta-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 1.1rem;
}

.cta-button a {
  background: white;
  color: #e6005c;
  padding: 15px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.cta-button a:hover {
  background: #f3f3f3;
}

/* IMAGE INTERMEDIAIRE */
.boutique-banner {
  width: 100%;
  margin: 0;
  padding: 0;
}

.boutique-banner .img_intro {
  width: 100%;
  height: 400px;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* CTA spécifiques */
.boutique-cta .cta-container {
  flex-direction: column;
  align-items: flex-start;
}

.boutique-cta .cta-button {
  margin-top: 20px;
}

.contact-cta h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.contact-cta .cta-container {
  align-items: flex-start;
}

.contact-cta .cta-button {
  margin-top: 20px;
}

.contact-cta .cta-text p {
  margin-top: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #boutique_intro .img_intro {
    height: 300px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #boutique_intro .img_intro h2 {
    font-size: 42px;
    line-height: 1.1;
  }
  #boutique_intro .boutique_texte {
    margin: 40px auto;
    padding: 0 15px;
  }
  #boutique_intro .boutique_texte p {
    text-align: left;
  }
  .boutique-banner .img_intro {
    height: 220px;
  }
  .cta-container,
  .boutique-cta .cta-container,
  .contact-cta .cta-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .cta-text {
    max-width: 100%;
  }
  .cta-text h2 {
    font-size: 1.6rem;
  }
  .cta-text p {
    font-size: 1rem;
  }
  .boutique-cta .cta-button,
  .contact-cta .cta-button {
    margin-top: 20px;
  }
  .cta-button a {
    padding: 14px 28px;
  }
}
/* Titre de la section */
.section-title h2 {
  color: #e91e63;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
}

/* Conteneur principal */
#realisation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Item de réalisation */
.realisation-item {
  margin-bottom: 20px;
}

.realisation-item p {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

/* Image de réalisation */
.realisation-image {
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
}

/* Première réalisation en pleine largeur */
.full-width .realisation-image {
  height: 400px;
}

/* Grille de 2 colonnes */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.realisations-grid .realisation-image {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  #realisation {
    padding: 15px;
  }
  .realisations-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .realisation-image {
    height: 180px;
  }
  .full-width .realisation-image {
    height: 220px;
  }
  .realisation-item p {
    font-size: 16px;
  }
}
/* SECTION PARTENAIRES */
.partenaires {
  padding: 60px 0;
  text-align: center;
}

.partenaires h2 {
  margin-bottom: 30px;
}

/* SLIDE */
.splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGES */
.splide__slide img {
  max-width: 120px;
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* HOVER */
.splide__slide img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .partenaires {
    padding: 40px 15px;
  }
  .partenaires h2 {
    margin-bottom: 20px;
  }
  .splide__slide img {
    max-width: 90px;
    max-height: 60px;
  }
}

/*# sourceMappingURL=style.css.map */
