/* Couleurs personnalisées */
.bg-navy {
  background-color: #0f1433 !important;
}
.btn-danger {
  background-color: #d70f2f !important;
  border-color: #d70f2f !important;
}

/* Top bar */
.top-bar {
  background-color: #0f1433;
  height: 40px;
  font-size: 0.9rem;
}

/* Hero section */
.hero-section {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-nav-left,
.hero-nav-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.hero-nav-left { left: 1rem; }
.hero-nav-right { right: 1rem; }

/* Info cards */
.info-cards .card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer a {
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}


/* Animation “pulse” pour le bouton Réservez ici */
.btn-animate {
  /* on centre l’échelle pour que la mise à l’échelle soit symétrique */
  transform-origin: center;
  animation: pulse-btn 2s infinite ease-in-out;
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(215, 15, 47, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(215, 15, 47, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(215, 15, 47, 0);
  }
}
