/* ================================
   Styles personnalisés pour Appart.php
   ================================ */


/* 📝 Sections */
h2 {
  color: var(--bleu-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

p a {
  color: var(--bleu-ocean);
  text-decoration: underline;
}

/* 📦 Cards (équipements) */
.card {
  border: none;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.card-title {
  color: var(--bleu-clair);
  font-weight: 600;
}

/* 📷 Galerie photos */
.gallery img {
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* 📍 Footer */
footer {
  background-color: var(--bleu-ocean);
  color: #fff;
  font-size: 0.9rem;
}