/* CSS complet */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  scroll-behavior: smooth;
}

nav {
  background-color: #1963be;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-weight: bold;
  font-size: 1.2em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

header {
  background-color: #1963be;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  margin-bottom: 20px;
  font-style: italic;
}

.whatsapp-btn {
  background-color: #feca00;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #ffe14c;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  background-color: #f4f4f4;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
}

.horaire-list,
.pause-list {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
  margin: 15px 0;
}

.horaire-list li,
.pause-list li {
  margin: 8px 0;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
  margin-bottom: 30px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button {
  background-color: #1963be;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contact button:hover {
  background-color: #154f9e;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

footer {
  background-color: #f0f0f0;
  color: #555;
  text-align: center;
  padding: 20px;
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: slideUp 0.5s ease-out;
}

.popup-content p {
  margin-bottom: 20px;
  font-size: 1em;
}

.popup-content a {
  color: #1963be;
  text-decoration: underline;
}

.popup-content button {
  background-color: #1963be;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: #154f9e;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header h1 {
    font-size: 1.8em;
  }

  .whatsapp-btn {
    padding: 10px 16px;
  }
}
.service-box {
background-color: #f9f9f9;
padding: 20px;
margin: 20px auto;
border-radius: 8px;
text-align: left;
max-width: 700px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
transition: transform 0.3s ease;
}
.service-box h3 {
margin-top: 0;
color: #1963be;
}
.service-box:hover {
transform: translateY(-5px);
}
.legal-page {
max-width: 800px;
margin: auto;
padding: 40px 20px;
text-align: left;
}

.legal-page h1 {
text-align: center;
color: #1963be;
}

.legal-page h2 {
color: #1963be;
margin-top: 30px;
}

.legal-page p {
line-height: 1.6;
margin-top: 10px;
}
/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1963be;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background-color: #feca00;
  border-radius: 5px;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.menu-icon span {
  height: 3px;
  width: 100%;
  background-color: white;
  transition: 0.3s ease;
}

/* Animation X */
.menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(7.5px, 7.5px);
}
.menu-icon.active span:nth-child(2) {
  opacity: 0;
}
.menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7.5px, -7.5px);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #1963be;
    width: 100%;
    flex-direction: column;
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-icon {
    display: flex;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1963be;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 16px;
  margin: 0 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#cookie-accept {
  background-color: #4CAF50;
  color: white;
}

#cookie-decline {
  background-color: #f44336;
  color: white;
}

@media (min-width: 600px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.location {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.location:hover {
  background-color: #218838;
}
.location {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.location:hover {
  background-color: #218838;
}
