/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat&display=swap');

:root {
  --red: #E60012;
  --white: #FFFFFF;
  --black: #111111;
  --gold: #FFD700;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--black);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', cursive;
  margin-top: 0;
  letter-spacing: 1px;
}

/* Header (Menu) */
header {
  background-color: var(--red);
  color: var(--white);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
    width: 120px; /* Taille du cercle */
    height: 120px;
    border-radius: 50%;
    border: 4px solid gold; /* Bordure dorée */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black; /* Facultatif, pour contraster */
    transition: transform 0.3s ease;
  }
  
  .logo-wrapper:hover {
    transform: scale(1.05); /* Effet au survol (facultatif) */
  }
  
  .logo {
    height: 80px; /* Taille du logo à l'intérieur */
    max-width: 90%;
  }
  

nav {
  display: flex;
  gap: 1rem;

}
nav {
    display: flex;
    justify-content: center; /* Centre tout horizontalement */
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

#langToggle {
  background-color: var(--gold);
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

#langToggle:hover {
  opacity: 0.8;
}

/* Hero section */
.hero {
  background-color: var(--red);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Section générique */
section {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .services .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

button[type="submit"] {
  background-color: var(--red);
  color: var(--white);
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cta {
    display: inline-block;
    background: #FFD700;
    color: #111;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
  }
button[type="submit"]:hover {
  background-color: #cc0010;
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
}

.hidden {
  display: none;
}

/* Animation douce */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

.illustration-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .illustration {
    max-width: 600px;
    width: 90%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .illustration:hover {
    transform: scale(1.03);
  }
  

 
  