:root {
  --brand: #1d4ed8;
  /* bleu */
  --brand-2: #0ea5e9;
  /* cyan */
}

body {
  scroll-behavior: smooth;
}

.navbar-brand strong {
  letter-spacing: 0.3px;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
}

.btn-brand:hover {
  background: #163ea8;
  color: #fff;
}

.text-brand {
  color: var(--brand);
}

.badge-soft {
  background: rgba(13, 110, 253, 0.1);
  color: var(--brand);
}

.hero {
  background: radial-gradient(1200px 600px at 85% -10%, rgba(13, 110, 253, 0.12), transparent), linear-gradient(180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.85));
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 68vh;
  display: grid;
  place-items: center;
}
.hero.homepage {
  background: radial-gradient(1200px 600px at 85% -10%, rgba(13, 110, 253, 0.12), transparent), linear-gradient(180deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.85)), url("/assets/images/upload/seche-linge.jpeg");
  background-size: cover;
}
.hero .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.dark-bg {
  background-color: #061f31;
  color: #fff;
}
.dark-bg a.link-dark {
  color: cornflowerblue;
}
.dark-bg p.text-muted {
  color: cornflowerblue !important;
}

body {
  font-family: "Adamina", serif;
}

h1, h2, h5 {
  font-family: "Cambo", serif;
}

.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 992px) {
  .gallery-grid {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover {
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  color: #fff;
  font-size: 0.95rem;
}
.gallery-item.span-2 {
  min-height: 260px;
}

footer {
  background: #0b1220;
  color: #cbd5e1;
}

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