
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #222;
}

h1 {
 
  font-size: 3vw;
  color: #fff;
  letter-spacing: 0; /* serré, sans espace */
  font-weight: normal;
}

h1 br {
  content: "";
  margin-bottom: 0.2em;
  display: block;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}

.logo{
 max-width: 17%;
  height: auto;
}

.apropos-contenu {
  display: flex;
  align-items: flex-start;
  gap: 2rem; /* espace entre image et texte */
  flex-wrap: wrap; /* pour que ça passe en colonne sur petit écran */
}

.apropos-contenu img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.apropos-contenu p {
  flex: 1;
  font-size: 1rem;
  color: #333;
}

header {
  background-color: black;
  color: white;
  padding: 2rem;
  padding: 0px 40px;
   justify-content: space-between;
  display: flex;
  align-items: center;
  text-align: left ;
}

section {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  border-bottom: 1px solid #000;
  padding-bottom: 0.5rem;
}

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

.gallery img {
  width: auto;
  height: 200px; 
  max-width: 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #eee;
  font-size: 0.9rem;
}

.carousel {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 10px;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll 60s linear infinite;
}

.carousel-track img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .carousel-track img {
    max-width: 200px;
  }
}

a {
  color: #0077cc;          /* bleu doux */
  text-decoration: none;   /* enlève le soulignement */
  font-weight: 600;        /* un peu plus gras */
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #005fa3;          /* bleu plus foncé au survol */
  text-decoration: underline; /* souligne au survol/focus */
  outline: none;
  cursor: pointer;
}

#contact {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#contact h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-item a {
  color: #0077cc;
  text-decoration: none;
  margin-left: 0.5rem;
}

.contact-item a:hover {
  text-decoration: underline;
}