body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #e3f2fd 0%, #fff8e1 100%);
  color: #1a1a1a;
  text-align: center;
  min-height: 100vh;
}

.logo {
  margin-top: 30px;
}

.highlight {
  color: #f4b400;
}

section {
  background-color: rgba(255, 255, 255, 0.9);
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.1);
  border: 2px solid transparent;
  transition: border 0.4s ease, box-shadow 0.4s ease;
}

section:hover {
  border-color: #f4b400;
  box-shadow: 0 0 20px rgba(244, 180, 0, 0.5);
}

section ul {
  text-align: left;
}

.btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #039be5;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0288d1;
}

.btn.cta {
  background: #f4b400;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
}

.btn.cta:hover {
  background: #e0a800;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

form input,
form textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

footer {
  margin-top: 40px;
  padding: 20px;
  background-color: #e3f2fd;
  color: #333;
  font-size: 0.9rem;
}

footer a {
  color: #007bff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.sabre {
  text-shadow: 0 0 6px #ff0000, 0 0 10px #ff0000;
}

.map iframe {
  border-radius: 8px;
}

.mentions {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffffcc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
}

/* Bandeau cookie */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff3cd;
  color: #856404;
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#cookie-banner button {
  margin-left: 10px;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#cookie-accept {
  background-color: #28a745;
  color: white;
}

#cookie-decline {
  background-color: #dc3545;
  color: white;
}

/* Carrousel */
.slider {
  overflow: hidden;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  position: relative;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  max-height: 400px;
}

/* Bannière urgence */
.emergency-banner {
  background-color: #dc3545;
  color: white;
  padding: 10px;
  font-weight: bold;
}

.emergency-banner a {
  color: #fff;
  text-decoration: underline;
}
