/* ==================== IMPORT DES POLICES ==================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap');

/* ==================== RESET DE BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Inclut padding et border dans les dimensions */
}

/* ==================== CORPS DE LA PAGE ==================== */
body {
  font-family: 'Playfair Display', serif;
  background-color: #ffffff;
  color: #111;
  line-height: 1.6;
  padding-top: 140px; /* Laisse de la place pour la navbar fixe */
  scroll-behavior: smooth; /* Défilement fluide */
}

/* ==================== NAVBAR ==================== */
header {
  position: fixed; /* Toujours visible en haut */
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000; /* Reste au-dessus des autres éléments */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  text-align: center;
}

.site-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
}

nav {
  display: flex;
  justify-content: center;
  gap: 25px;
}

nav a {
  color: #444;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #bfa46f;
  text-decoration: underline;
}

/* ==================== BOUTON PRINCIPAL ==================== */
.btn {
  display: inline-block;
  background: #bfa46f;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #a08a52;
  color: white;
}

/* ==================== SECTION HERO ==================== */
.hero {
  background-image: url('images/momos.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 12px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* ==================== SECTION DESCRIPTION ==================== */
.description {
  background-color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.description p {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #111;
}

/* ==================== PIED DE PAGE ==================== */
.custom-footer {
  background-color: #ddd5d5;
  color: #333;
  font-size: 14px;
  text-align: center;
  padding: 40px;
}

.social-icons a {
  color: #333;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #bfa46f;
}

.footer-links {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  padding: 5px 10px;
}

.footer-bottom p {
  margin: 8px 0;
  color: #000;
}

/* ==================== SECTION CONTACT ==================== */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 700px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* ==================== FORMULAIRE DE CONTACT ==================== */
form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  margin: 30px 0;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: inherit;
}

input[type="submit"],
button[type="submit"] {
  width: 100%;
  background-color: #bfa46f;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: #a08a52;
}

/* ==================== MESSAGE DE SUCCÈS ==================== */
.success {
  color: green;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ==================== ANIMATION FADE-IN ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== SECTION RÉSERVATION ==================== */
.reservation-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  max-width: 600px;
  margin: 80px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.reservation-section h2 {
  text-align: center;
  color: #bfa46f;
  margin-bottom: 30px;
}

/* Formulaire de réservation */
form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: inherit;
}

input[type="submit"] {
  background-color: #bfa46f;
  color: white;
  font-size: 16px;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #a08a52;
}

/* Message de succès avec fond vert clair */
.success {
  color: green;
  background-color: #e7fbe7;
  border: 1px solid #b2e2b2;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

/* ==================== SECTION ABOUT ==================== */
.about-luxury {
  padding: 80px 20px;
  background-color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.about-wrapper {
  max-width: 800px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-wrapper h1 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #bfa46f;
}

.about-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}
