.xl-text {
  font-size: 75px;
}

.btn-outline-secondary {
  color: var(--bs-secondary);
}

.btn-outline-secondary:hover {
  color: #fff;
}

.header .decoration-star {
  top: 80px;
  left: -200px;
  width: 500px;
  opacity: 0.7;
}

.header .decoration-star-2 {
  top: 80px;
  right: -200px;
  width: 500px;
  opacity: 0.7;
}

.navbar {
  transition: all 0.5s ease-in-out;
}

.navbar-sticky {
  background: #fff;
  /*opacity: 0.9;*/
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.details .decoration-star {
  left: -200px;
  width: 500px;
}

.details-2 .decoration-star {
  right: -200px;
  width: 500px;
}

.contact .decoration-star {
  left: -300px;
  width: 600px;
}

.to-top-btn {
  position: fixed;
  z-index: 20;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  outline: none;
  /*background-color: #44434a;*/
  background-color: var(--bs-secondary);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.to-top-btn:hover {
  background-color: #1d1d21;
}

.to-top-btn img {
  margin-bottom: 0.25rem;
  width: 18px;
}

.show {
  opacity: 1;
}

.cta {
  background: url("../images/bg-1.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 60, 136, 0.5);
}

.cta .container {
  z-index: 10;
}

.modal-dialog {
  max-width: 1040px;
}

.modal-backdrop {
  z-index: 2000;
}

.cta-contact, .cta-booking {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 6px rgba(222, 58, 52, 0.25);
}

.head-title {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(222, 58, 52, 0.25);
}

.top-header {
  background: linear-gradient(90deg, #202020 0%, #DE3A34 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumb-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("https://images.unsplash.com/photo-1580281657527-47dfbb64f5f1?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

:root {
  --brand-red: #DE3A34;
  --brand-red-soft: rgba(222, 58, 52, 0.08);
}

.faq-accordion {
  max-width: 850px;
}

.faq-accordion .accordion-item {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: #fff;
  padding: 1.3rem 1.6rem;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--brand-red-soft);
  color: var(--brand-red);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(28%) sepia(83%) saturate(2410%) hue-rotate(347deg) brightness(93%) contrast(95%);
}

.faq-accordion .accordion-button:hover {
  background: var(--brand-red-soft);
}

.faq-accordion .accordion-body {
  background: #fff;
  padding: 1.5rem 1.6rem;
  line-height: 1.65;
  color: #555;
}

.footer {
  /*background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;*/
    background: radial-gradient(circle at bottom right, rgba(222, 58, 52, 0.12), transparent 45%), linear-gradient(135deg, #050d12, #0b1e2d);
    color: #ffffff;"
}

.footer-info {
  margin-right: 1rem;
}

.animated-title {
  animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-15px);
  }
}
.left-info {
  position: relative;
  top: 7px;
}

.breadcrumb-banner-subtitle {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
}

@media (max-width: 992px) {
  .xl-text {
    font-size: 50px;
  }
  .navbar .btn-outline-secondary {
    margin-top: 20px;
  }
  .header {
    margin-top: 0px !important;
    text-align: center;
  }
  .header .decoration-star {
    left: -100px;
    width: 250px;
  }
  .header .decoration-star-2 {
    right: -100px;
    width: 250px;
  }
  .header .image-container {
    margin-top: 30px;
  }
  .services .col-md-4 {
    border-bottom: 1px #ccc solid;
    margin: 10px 0;
  }
  .details-2 {
    margin-top: 20px !important;
  }
  .details-2 .decoration-star {
    top: 300px;
  }
  .top-header {
    display: none;
  }
}


.nav-link.btn.btn-outline-secondary {
    transition: all 0.3s ease;
}

.nav-link.btn.btn-outline-secondary:hover {
    /*background-color: #6c757d; !* secondary *!*/
    /*color: #fff;*/
    /*border-color: #6c757d;*/
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.service-link{
    transition: all 0.3s ease-in-out;
}
.service-link:hover{
    color: var(--bs-secondary) !important;
}
.service-description p {
    margin-bottom: 1rem;
}

.nav-link.btn.btn-outline-secondary {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-link.btn.btn-outline-secondary:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

/* Bouton */
.animated-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 22px;
    position: relative;
    background: none;
}

/* Barres */
.animated-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000; /* adapte à ton thème */
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
}

.animated-toggler span:nth-child(1) {
    top: 0;
}
.animated-toggler span:nth-child(2) {
    top: 9px;
}
.animated-toggler span:nth-child(3) {
    top: 18px;
}

/* Animation quand ouvert */
.animated-toggler[aria-expanded="true"] span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.animated-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.animated-toggler[aria-expanded="true"] span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}
/* Enlever le outline et l’ombre au clic / focus */
.animated-toggler:focus,
.animated-toggler:active,
.animated-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
.topbar-link{
    color: white;
    text-decoration: none;
    transition: all .3ms ease-in-out;
}
.topbar-link:hover{
    color: var(--bs-secondary);
    text-underline: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 6px rgba(222, 58, 52, 0.25);
}

.text-shadow-title{
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: text-shadow 0.2s ease, transform 0.2s ease;
}
.grecaptcha-badge {
    bottom: 100px !important;
    right: 20px !important;
    z-index: 1000;
}
