:root {
  --primary-color: #d4af37;
  --secondary-color: #d4af37;
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --accent-color: #bfa046;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
}

nav {
  position: fixed;
  width: 100%;
  height: 10%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #000;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--accent-color);
}

header {
  background-image: url('assets/2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh; /* change de 200vh à 100vh */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 70px;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

header .hero-content {
  position: relative;
  text-align: center;
  color: var(--primary-color);
  z-index: 2;
}

header .hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

header .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--accent-color);
}

section {
  padding: 4rem 2rem;
}

.services, .pricing, .gallery, .team, .location {
  text-align: center;
}

.services h2,
.pricing h2,
.gallery h2,
.team h2,
.location h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.service-cards,
.pricing-table,
.gallery-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.service-card, .pricing-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
}

.service-card:hover,
.pricing-item:hover
 {
  transform: translateY(-5px);
}

.service-card h3, .pricing-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  filter: brightness(0.95);
}

.team-member {
  color: var(--text-color);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  margin-bottom: 1rem;
}

.map-container iframe {
  width: 100%;
  max-width: 1200px;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

.reservation-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fff;
  color: #000;
}

.submit-btn {
  background: var(--primary-color);
  border: none;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--accent-color);
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.option-card {
  border: 2px solid #ccc;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  flex: 1 1 200px;
}

.option-card input[type="radio"] {
  display: none;
}

.option-card label {
  display: block;
  cursor: pointer;
}

.option-card input[type="radio"]:checked + label {
  background: var(--primary-color);
  color: white;
  border-radius: 10px;
}

.option-card:hover {
  transform: translateY(-5px);
}

#horaire-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

.horaire-btn {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.horaire-btn.selected {
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
}

.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--primary-color);
  color: #000;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.floating-btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.05);

  
}

footer {
  background: #000;
  color: var(--primary-color);
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}






/*page reservation-choix*/

main.reservation-page {
  text-align: center;
  padding: 2rem;
}

main.reservation-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

main.reservation-page p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.categories {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 2rem;
}

.category {
  background-color: #fdf9f3;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0d8c4;
}

.category h2 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 1rem;
}

.category ul {
  list-style: none;
  padding: 0;
}

.category li {
  margin-bottom: 1.5rem;
  text-align: left;
}

.category h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.category p {
  font-size: 0.95rem;
  color: #444;
}

.btn-reserver {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: #d4af37;
  color: #000;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-reserver:hover {
  background-color: #bfa046;
}

button[disabled] {
  background-color: #ccc;
  color: #666;
  padding: 8px 16px;
  border-radius: 30px;
  border: none;
  cursor: not-allowed;
  font-weight: bold;
}

/* ===== Formulaire de contact ===== */
#contact {
  padding: 4rem 2rem;
  background-color: var(--bg-color);
  color: var(--text-color);
}

#contact h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

#contact form {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Open Sans', sans-serif;
}

#contact label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fff;
  color: var(--text-color);
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: #888;
}

#contact textarea {
  resize: vertical;
  min-height: 120px;
}

#contact button {
  background-color: var(--primary-color);
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

#contact button:hover {
  background-color: var(--accent-color);
}


.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Menu mobile */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  nav ul.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: none;
    z-index: 999;
  }

  nav ul.nav-links a {
    color: var(--primary-color);
    font-size: 1.1rem;
  }

  nav ul.nav-links.show {
    display: flex;
  }
}

@media (max-width: 768px) {
  header {
    height: 70vh; /* plus petit pour mobile */
    background-position: top;
  }

  header .hero-content h1 {
    font-size: 2rem;
  }

  header .hero-content p {
    font-size: 1rem;
  }
}