body {
  background-image: url("../images/fond.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: larger;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px;
  font-weight: 200;
  font-weight: bold;
}

header {
  background-color: #333;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav li {
  float: left;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav li a:hover {
  background-color: #111;
}

.h1-title {
    text-align: center;
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

label {
  font-size: 1rem;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

input:focus {
  outline: none;
  border-color: #007bff;
}

.checkbox-section {
  margin-bottom: 20px;
}

.checkbox-label {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  display: block;
}

.checkbox-container {
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.checkbox-container label {
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  display: flex;
}

.checkbox-container input {
  margin-right: 5px;
  accent-color: #007bff;
  
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  box-sizing: border-box;
}

button:hover {
  background-color: #0056b3;
}

.menu-item {
  background-color: #ecf0f1;
  padding: 15px;
  margin: 0 auto;
  border-radius: 5px;
  width: 700px;
}

h2{
  text-align: center;
}

p{
  text-align: center;
}

.menu-item h3 {
  font-size: 1.8em;
  margin-bottom: 5px;
  text-align: center;
}

.menu-item p {
  font-size: 1.1em;
}

.yellow {
  text-decoration: underline;
}

.contact {
  background-image: url("../images/contact.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-font {
  background-image: url("../images/menuFont.jpeg");
  height: 500px;
  background-size: cover;
}

.price {
  font-weight: bold;
  font-size: 1.3em;
  color: #e74c3c;
}

/* Conteneur principal */
.container {
  width: 100%;
  max-width: 500px;
  background: white;
  margin: 0 auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.container:hover {
  transform: scale(1.02);
}

/* Titres */
#h2,
#h3 {
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Bouton de téléchargement */
.download-btn {
  display: inline-block;
  background: #28a745;
  color: white;
  font-size: 16px;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.download-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* Formulaire */
form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Label pour le fichier */
.file-label {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #007bff;
  color: white;
  padding: 12px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  width: 100%;
  max-width: 300px;
  transition: background 0.3s ease-in-out;
}

.file-label:hover {
  background: #0056b3;
}

/* Nom du fichier sélectionné */
#file-name {
  display: block;
  margin: 12px 0;
  font-style: italic;
  color: #555;
  font-size: 14px;
}

/* CAPTCHA */
.g-recaptcha {
  margin: 15px 0;
}

/* Bouton d'envoi */
button {
  width: 100%;
  max-width: 300px;
  background: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Message de statut */
#status-message {
  margin-top: 12px;
  font-weight: bold;
  font-size: 14px;
}

#map {
  margin-top: 20px;
  text-align: center;
}

/* Responsive design */
@media (max-width: 600px) {
  .container {
    max-width: 90%;
    padding: 20px;
  }

  .download-btn,
  button,
  .file-label {
    font-size: 14px;
    padding: 10px;
  }

  #h2,
  #h3 {
    font-size: 18px;
  }
}

.schedule {
  max-width: 400px;
  background: white;
  padding: 20px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.schedule h2 {
  margin-bottom: 15px;
  color: #333;
}

.event {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.event:last-child {
  border-bottom: none;
}

.time {
  font-weight: bold;
  color: #007bff;
}