body {
  margin: 0; 
  font-family: 'Merriweather', serif;
  background-color: #2e2e2e;
  color: white;
  text-align: center;
}

.navbar {
  background-color: #1e1e1e;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 3px solid #1b324f;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  height: 40px;
  margin: 5px 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  margin: 10px 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

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

.content {
  margin: 40px auto;
  max-width: 900px;
  padding: 0 20px;
}

.main-logo {
  height: 70px;
  margin-bottom: 10px;
}

.content h1 {
  font-size: 28px;
  margin-bottom: 30px;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .content h1 {
    font-size: 22px;
  }

  .logo {
    height: 35px;
  }
}


/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

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


.contact-section {
  background-color: #1e1e1e;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 3px solid #1b324f;
}

.contact-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section input,
.contact-section textarea {
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-family: 'Merriweather', serif;
  font-size: 14px;
}

.contact-section button {
  background-color: #1b324f;
  color: white;
  padding: 12px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-section button:hover {
  background-color: #2e4b72;
}


/* Zoom sur image */
img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.03);
}


.footer {
  background-color: #1e1e1e;
  padding: 20px;
  text-align: center;
  border-top: 3px solid #1b324f;
  margin-top: 60px;
}

.footer p {
  margin: 0;
  font-size: 13px;
  color: #ccc;
  font-family: 'Merriweather', serif;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}


.visual-contact-section {
  position: relative;
  padding: 60px 20px;
  background-color: #2e2e2e;
  overflow: hidden;
  margin-top: 60px;
  z-index: 1;
}

.contact-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  z-index: 2;
  position: relative;
}

.contact-item {
  text-align: center;
  max-width: 250px;
}

.icon-img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.gradient-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, #1b324f 0%, transparent 70%);
  animation: floatBg 10s linear infinite;
  opacity: 0.05;
  z-index: 0;
}

@keyframes floatBg {
  0% { transform: translate(0, 0); }
  50% { transform: translate(10px, 20px); }
  100% { transform: translate(0, 0); }
}


.visual-contact-section {
  position: relative;
  padding: 60px 20px;
  background-color: #2e2e2e;
  overflow: hidden;
  margin-top: 60px;
  z-index: 1;
}

.contact-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  z-index: 2;
  position: relative;
}

.contact-item {
  text-align: center;
  max-width: 250px;
}

.icon-img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.gradient-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, #1b324f 0%, transparent 70%);
  animation: floatBg 10s linear infinite;
  opacity: 0.05;
  z-index: 0;
}

@keyframes floatBg {
  0% { transform: translate(0, 0); }
  50% { transform: translate(10px, 20px); }
  100% { transform: translate(0, 0); }
}


body {
  background: linear-gradient(-45deg, #2e2e2e, #1e1e1e, #2e2e2e, #1e1e1e);
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
}

@keyframes gradientFlow {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
