@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: Oswald;
  background: white;
  color: #0d47a1;
}
.hero {
  position: relative;
  height: 150vh;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0rem;
  background-image: url("images/Mareterra.jpg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.hero h1,
.hero p,
.hero button {
  position: relative;
  z-index: 2;
}


.slogan {
  font-size: 2rem;
  margin: 0;
}
.btn-scroll {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-family: "Oswald";
  border: none;
  background: #0d47a1;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  margin-top: 1rem;
  transition: transform 0.3s;
}
.btn-scroll:hover {
  transform: translateY(-5px);
  background: #1565c0;
}

@keyframes glowBlue {
  from {
    text-shadow: 0 0 10px #2196f3, 0 0 20px #2196f3;
  }
  to {
    text-shadow: 0 0 20px #64b5f6, 0 0 30px #64b5f6;
  }
}

.about {
  padding: 4rem 2rem;
  background: #f5f5f5;
  text-align: center;
}
.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.about p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.carousel-section {
  background: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}
.carousel-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.carousel {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(13, 71, 161, 0.6);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.map-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background-color: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
}

.map-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.map-image {
  width: 200px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.map-text {
  font-size: 0.95rem;
  color: #0d47a1;
  line-height: 1.4;
  text-align: left;
}

.map-section h2 {
  display: none; /* Optionnel : tu peux le réactiver si besoin */
}

@media (max-width: 640px) {
  .map-container {
    flex-direction: column;
    max-width: 90%;
    text-align: center;
  }

  .map-image {
    width: 100%;
  }

  .map-text {
    font-size: 1rem;
    text-align: center;
  }

  .map-section h2 {
    display: none;
  }
  .logo {
    font-size:3.5rem;
    font-weight: 700;
    color: white;
    animation: glowBlue 3s ease-in-out infinite alternate;
}

.carousel-section h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
}
.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  justify-content: center;
  align-items: center;
}
.logo1 img {
  height: 150px;
  width: 150px;
  object-fit: contain;
  justify-content: center;
  align-items: center;
}
.nav-links {
  font-family: "Bebas Neue";
  font-size: 1.3rem;
  font-style: normal;
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  position: relative;
  transition: color 0.3s;
  padding: 0.5rem;
  display: inline-block;
}

.nav-links a:hover {
  color: #2563eb;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #2563eb;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.contact-btn a {
  font-family: "Bebas Neue";
  background-color: #2563eb;
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-btn a:hover {
  background-color: #1d4ed8;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #333;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 1rem;
  gap: 1rem;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

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

.mobile-contact {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem;
  text-align: center;
  border-radius: 8px;
}

.hidden {
  display: none;
}

.active-link {
  color: #2563eb;
  font-weight: bold;
}

  footer {
    position: relative;
    width: 100%;
    background: #3486ff;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: auto; /* S'assure que le footer est en bas */
  }
  
  footer .social_icon,
  footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
  }
  
  footer .social_icon li,
  footer .menu li {
    list-style: none;
  }
  
  footer .social_icon li a {
    font-size: 2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  
  footer .social_icon li a:hover {
    transform: translateY(-10px);
  }
  
  footer .menu li a {
    font-size: 1rem;
    font-family: "Oswald";
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
  }
  
  footer .menu li a:hover {
    opacity: 1;
    transition: 0.5s;
    transform: translateY(-10px);
  }
  
  footer p {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 0.9em;
  }
  
  footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff url(wave.png);
    background-size: 1000px 100px;
  }
  
  footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
  }
  
  @keyframes animateWave {
    0% {
      background-position-x: 1000px;
    }
    100% {
      background-position-x: 0px;
    }
    
  }
.final-cta {
  background-color: white;
  color: #0d47a1;
  padding: 2rem 2rem;
  padding-bottom: 8rem;
  text-align: center;
  border-top: 1px solid #ccc;
}

.final-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.final-button {
  font-family: "Bebas Neue", sans-serif;
  background-color: #2563eb;
  color: white;
  font-size: 1.5rem;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s;
}

.final-button:hover {
  background-color: #1d4ed8;
}
@media (max-width: 768px) {
  .nav-links,
  .contact-btn {
    display: none;
  }

  .burger {
    display: flex;
  }
  .hero{
    position: relative;
    height: 70vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0rem;
    background-image: url("images/PHOTO-2024-12-17-23-10-32\ 2.jpg");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .map-container {
    flex-direction: column;
  }

  .map-image {
    width: 90%;
  }

  .map-text {
    font-size: 0.95rem;
  }
  }
  
  /* Responsive pour téléphones */
  @media (max-width: 480px) {
    .map-image {
      width: 100%;
    }
  
    .map-text {
      padding: 1rem;
      font-size: 0.9rem;
    }
    .final-content h2 {
      font-size: 1.7rem;
      margin-bottom: 0rem;
    }
  }