/* 🧭 Base et responsive */
html {
  position: relative;
  min-height: 100%;
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f5ec; /* Beige clair */
  color: #1a1a1a;
  margin: 0;
  padding-bottom: 60px;
  overflow-x: hidden;
}

/* 🔘 États interactifs */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* 🖊️ Placeholder direction */
.form-floating .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating .form-control:focus::placeholder {
  text-align: start;
}

/* 🖼️ Carousel */
.carousel-item {
  position: relative;
  height: 50vh;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  bottom: 15%;
  z-index: 2;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 6px #000;
}

.carousel-caption h1 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #d4af37; /* doré */
}

.carousel-caption p {
  font-size: 1.2rem;
}

/* 💬 Hero & intro */
.hero {
  background-color: #002b5c;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero .btn-primary {
  background-color: #d4af37;
  color: #002b5c;
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  text-decoration: none;
}

/* 📢 Présentation */
.presentation {
  padding: 60px 20px;
  text-align: center;
}

.presentation h2 {
  color: #002b5c;
  margin-bottom: 20px;
}

/* 🔗 Boutons & services */
.services .btn {
  font-size: 1.1rem;
}

/* 🧭 Barre de navigation */
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 600;
}

.nav-link:hover {
  color: #d4af37 !important;
  text-decoration: underline;
}

/* 🦶 Pied de page */
.footer {
  background-color: #002b5c;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer h5 {
  color: #d4af37;
}

.footer a {
  color: #d4af37;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f5ec;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

main {
  flex: 1;
}

.footer {
  background-color: #002b5c;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.card-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
}

.card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
