body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #111, #222);
  

  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.logo {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
nav a {
  text-decoration: none;
  color: #f1f1f1;
  font-weight: bold;
}
nav a:hover {
  color: #ff4081;
}
.hero {
  text-align: center;
  padding: 10rem 2rem;
  background: url('Background_intro.png') center 55% / 100% no-repeat;:
  flex: 1;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  border-radius: 10px;
  margin: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  font-size: 3rem;
}
.hero p {
  font-size: 1.5rem;
}
.section {
  padding: 3rem 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.testimonial {
  background-color: rgba(0,0,0,0.3);
  padding: 1rem;
  margin: 1rem 0;
  border-left: 4px solid #ff4081;
}
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reservation-form input,
.reservation-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
}
.reservation-form button {
  padding: 0.8rem;
  background-color: #ff4081;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.reservation-form button:hover {
  background-color: #ff1c6b;
}
footer {
  text-align: center;
  padding: 1rem;
  background-color: #000;
  color: #999;
  margin-top: auto;
}
.info {
  background-color: rgba(0,0,0,0.3);
  padding: 1rem;
  margin: 4rem;
  border-left: 4px solid #ff4081;
}

.mobile-menu-container {
  display: none;
}

@media only screen and (max-width: 768px), (max-device-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu-container {
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 1000;
  }

  .menu-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #ff4081;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .mobile-menu {
	background-color: red;
    display: none;
    margin-top: 0.5rem;
    background-color: #222;
    padding: 1rem;
    border-radius: 10px;
    list-style: none;
  }

  .mobile-menu li {
    margin: 0.5rem 0;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
  }

  .mobile-menu a:hover {
    color: #ff4081;
  }
}





#commentaires button {
  padding: 0.8rem 1.2rem;
  background-color: #ff4081;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

#commentaires button:hover {
  background-color: #ff1c6b;
}

/* Fond pour tablette (entre 769px et 1024px de largeur) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero {
    background: url('Images/Background_Tablette.PNG') center 80% / 100% no-repeat;
  }
}

table,th, td {
	border: 1px solid white;
	width:60%;
	margin:auto;
	text-align: center;
}

/* Fond alternatif pour les petits écrans (mobile) */
@media only screen and (max-width: 768px), (max-device-width: 768px) {
  .hero {
    background-image: url('Images/Background_Tablette.PNG');
    background-size: cover;
    background-position: center;
  }
}

.site-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
}