:root {
    --1_color: rgb(220, 55, 49); /* Rouge original */
    --2_color: rgb(20, 21, 23);  /* Noir original */
    --text-light: #ffffff;        /* Texte blanc */
    --transition: all 0.3s ease;
}

/* Base */
body {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #f8f9fa;
    padding-top: 80px;
    color: #333;
}

.navbar {
    background-color: var(--2_color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 120px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light) !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: white !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

/* Carousel vedette (conservé comme original) */
#carouselVedette {
    margin-top: 40px;
}

.vedette-slide {
    width: 100%;
    min-height: 400px;
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.vedette-title {
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px #000;
    font-weight: bold;
}

.bloc1 {
    padding: 1rem 0;
    margin: 3rem auto;
}

.presentation-card {
  background: linear-gradient(120deg, rgba(220,55,49,0.07) 0%, #fff 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(20,21,23,0.08);
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s;
  position: relative;
}

.presentation-card:hover {
  box-shadow: 0 12px 36px rgba(20,21,23,0.14);
}

.presentation-content {
  padding: 1rem 1.5rem;
}

.presentation-title {
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--2_color);
  line-height: 1.2;
}

.brand-highlight {
  display: block;
  color: var(--1_color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.3rem;
  letter-spacing: 1px;
}

.presentation-text {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
}

.highlight {
  color: var(--1_color);
  font-weight: 600;
}

.btn-custom {
  background: var(--1_color);
  color: #fff;
  border-radius: 30px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(220,55,49,0.08);
  border: none;
  transition: background 0.2s, color 0.2s;
}

.btn-custom:hover {
  background: #fff;
  color: var(--1_color);
  border: 2px solid var(--1_color);
}

.textpresent {
    color: var(--1_color);
    font-size: 1.2rem;
    line-height: 1.8;
}

.present {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Carousel photos (version améliorée mais affichage complet) */
#carouselExampleCaptions {
    margin: 4rem auto;
    background-color: var(--2_color); /* Fond noir pour mieux voir les photos */
}

.carousel-inner {
    max-height: 80vh;
}

.carousel-inner img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    margin: 0 auto;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 1rem;
    bottom: 20px;
}

.carousel-indicators button {
    background-color: var(--1_color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
    padding: 1.5rem;
}

.footer-modern {
    background: linear-gradient(120deg, var(--2_color) 60%, var(--1_color) 100%);
    color: var(--text-light);
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -8px 32px rgba(20,21,23,0.08);
    margin-top: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--1_color);
    letter-spacing: 1px;
}

.footer-contact li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-icon {
    background: var(--1_color);
    color: #fff;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    box-shadow: 0 2px 8px rgba(220,55,49,0.15);
}

.footer-label {
    font-weight: 600;
    color: #fff;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--1_color);
    text-decoration: underline;
}

.footer-social {
    margin-top: 1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--1_color);
    border-radius: 50%;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.3rem;
    margin: 0 0.4rem;
    box-shadow: 0 2px 8px rgba(220,55,49,0.18);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    background: var(--1_color);
    color: #fff;
    transform: translateY(-3px) scale(1.08);
}

.footer-copyright {
    font-size: 1rem;
    color: #bbb;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

.galerie-modern {
    background: linear-gradient(180deg, #fff 80%, rgba(220,55,49,0.06) 100%);
    border-radius: 24px;
    padding: 2rem 1rem 3rem 1rem;
    box-shadow: 0 8px 32px rgba(20,21,23,0.06);
}

.galerie-title {
    font-size: 2.7rem;
    font-weight: 900;
    color: var(--2_color);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 6px 24px rgba(220,55,49,0.09), 0 1px 0 #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 0.7rem;
    line-height: 1.1;
}

.galerie-card {
    background: #18191b;
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 2px 12px rgba(20,21,23,0.10);
    position: relative;
}

.galerie-card:hover {
    box-shadow: 0 8px 32px rgba(220,55,49,0.13);
    transform: translateY(-8px) scale(1.03);
    z-index: 2;
}

.galerie-img-container {
    position: relative;
    overflow: hidden;
    background: #111;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galerie-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), filter 0.3s;
    border-radius: 15px;
    filter: brightness(0.92) contrast(1.05);
}

.galerie-card:hover .galerie-img {
    transform: scale(1.08) rotate(-1deg);
    filter: brightness(1) contrast(1.1);
}

.galerie-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.6rem 1rem;
    background: linear-gradient(0deg, rgba(20,21,23,0.88) 90%, rgba(20,21,23,0.10) 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.92;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    transition: opacity 0.25s;
    pointer-events: none;
    z-index: 2;
}

.galerie-card:hover .galerie-caption {
    opacity: 1;
}

.google-reviews {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.google-review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(60,64,67,0.15);
  max-width: 450px;
  min-width: 280px;
  padding: 20px 18px 16px 18px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}
.google-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
}
.google-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #5f6368;
  margin-right: 8px;
}
.google-author {
  font-weight: 500;
  color: #202124;
  font-size: 16px;
}
.google-date {
  font-size: 13px;
  color: #5f6368;
}
.google-rating {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.google-star {
  color: #fbbc04;
  font-size: 18px;
  margin-left: 1px;
}
.google-star-empty {
  color: #e0e0e0;
}
.google-review-text {
  font-size: 15px;
  color: #202124;
  margin-top: 6px;
  line-height: 1.5;
}
#contact-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgb(20, 21, 23);
  color: rgb(220, 55, 49);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 16px rgba(60,64,67,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s;
}
#contact-float-btn:hover {
  background: rgb(220, 55, 49);
  color: rgb(20, 21, 23);
}
.icon-hover:hover {
  stroke: rgb(20, 21, 23);
}
.contact-modal {
  display: none;
  color: rgb(20, 21, 23);
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(60,64,67,0.18);
  justify-content: center;
  align-items: center;
}
.contact-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 24px 24px;
  max-width: 320px;
  width: 90vw;
  box-shadow: 0 8px 32px rgba(60,64,67,0.23);
  position: relative;
  text-align: center;
}
.contact-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
}
.chatlink {
  text-decoration: none;
  color: rgb(220, 55, 49);
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .navbar {
    height: 120px;
  }
  .navbar-brand {
    font-size: 1.2rem;
  }
  .nav-link {
    font-size: 0.98rem;
    padding: 0.3rem 0.7rem !important;
  }

  /* Fond du menu hamburger (menu déroulant mobile) */
    .navbar-collapse,
    .navbar-collapse.show {
        background: var(--2_color);
        /* Optionnel : ajoute une légère opacité si tu veux un effet */
        /* background: rgba(20,21,23,0.98); */
        transition: background 0.3s;
    }

    /* Pour le menu offcanvas Bootstrap 5 (si utilisé) */
    .offcanvas,
    .offcanvas.show {
        background: var(--2_color);
        color: var(--text-light);
    }

  #carouselVedette {
    margin-top: 20px;
  }
  .vedette-slide {
    height: 28vh;
    min-height: 110px;
  }
  .vedette-title {
    font-size: 1.05rem;
    padding: 0 0.3rem;
  }
  .overlay {
    padding: 0.2rem;
  }

  .bloc1 {
    padding: 1.2rem 0;
    margin: 1.2rem auto;
  }
  .presentation-card {
    padding: 0.6rem 0.15rem;
    border-radius: 12px;
  }
  .presentation-content {
    padding: 0.15rem 0.1rem;
  }
  .presentation-title {
    font-size: 1rem;
  }
  .brand-highlight {
    font-size: 0.85rem;
    margin-top: 0.1rem;
  }
  .presentation-text {
    font-size: 0.93rem;
    line-height: 1.5;
  }
  .btn-custom {
    padding: 0.4rem 1.1rem;
    font-size: 0.98rem;
    border-radius: 22px;
  }
  .present {
    max-width: 97vw;
    height: auto;
    margin-bottom: 0.7rem;
    border-radius: 8px;
  }
  .textpresent {
    font-size: 0.95rem;
  }

  #carouselExampleCaptions {
    margin: 1.5rem auto;
  }
  .carousel-inner {
    max-height: 34vh;
  }
  .carousel-inner img {
    max-height: 34vh;
    object-fit: contain;
  }
  .carousel-caption {
    font-size: 0.7rem;
    padding: 0.15rem 0.3rem;
    max-width: 98vw;
    border-radius: 4px;
    bottom: 8px;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 0.7rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  .carousel-indicators [data-bs-target] {
    width: 0.7rem;
    height: 0.7rem;
  }

  .footer-modern {
    border-radius: 10px 10px 0 0;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    margin-top: 2rem;
  }
  .footer-title {
    font-size: 1.1rem;
  }
  .footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    gap: 0.3rem;
    flex-wrap: wrap;
    word-break: break-word;
  }
  .footer-label,
    .footer-link {
    white-space: normal; /* Permet le retour à la ligne */
    }
  .footer-icon {
    width: 1.2rem;
    height: 1.2rem;
    font-size: 0.75rem;
    margin-right: 0.3rem;
  }
  .footer-social-link {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
    margin: 0 0.2rem;
  }
  .footer-copyright {
    font-size: 0.85rem;
    margin-top: 1rem;
  }

  .galerie-modern {
    padding: 0.5rem 0.1rem 1rem 0.1rem;
    border-radius: 8px;
  }
  .galerie-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  .galerie-img-container,
  .galerie-img {
    text-align: center;
    height: 200px;
    border-radius: 7px;
  }
  .galerie-caption {
    font-size: 0.7rem;
    padding: 0.2rem 0.3rem;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .google-reviews {
    flex-direction: column;
    gap: 16px;
    padding: 0 4px;
  }
  .google-review-card {
    max-width: 100vw;
    min-width: 0;
    width: 100%;
    padding: 16px 8px;
    margin-bottom: 16px;
  }
  .google-review-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }
  .google-review-text {
    font-size: 15px;
  }
  #contact-float-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
    font-size: 22px;
  }
  .contact-modal-content {
    padding: 20px 8px 16px 8px;
    max-width: 95vw;
  }
}