
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-image: url('images/fond.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.1;
  position: relative;
  z-index: 1001;
}

nav ul li {
  margin: 0;
  flex: 0 0 auto;
}

nav ul li a {
  text-decoration: none;
  color: #3c2a23;
  font-weight: bold;
  font-size: 14px;
  font-family: 'Helvetica Neue', sans-serif;
  padding: 4px 6px;
  line-height: 1.2;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  transform: translateY(-2px);
}

.container {
  max-width: 1000px;
  margin: 120px auto 40px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 10px;
}

h1 {
  font-size: 2em;
  color: #3c2a23;
  font-family: 'Cinzel', serif !important;
}

h2 {
  font-size: 24px;
  color: #3c2a23;
  font-family: 'Great Vibes', cursive;
}

.intro {
  text-align: center;
  font-style: italic;
  color: #3c2a23;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.description {
  color: #3c2a23;
  margin-bottom: 30px;
  font-size: 1.1em;
}

button {
  background-color: #eee1d6;
  font: 1em sans-serif;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 40px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service {
  background-color: #fffaf6;
  border-radius: 20px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 80px;
  margin-bottom: 10px;
}

.service p {
  color: #3c2a23;
  font-weight: bold;
  line-height: 1.4;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #d8b5c3;
  color: white;
  padding: 12px 20px;
  font-size: 1em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #d8b5c3;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}


@media screen and (max-width: 768px) {
  nav ul {
    display: flex;
    @media screen and (max-width: 768px) {
  nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 0 10px;
    gap: 10px;
    scrollbar-width: none;
  }

  nav ul::-webkit-scrollbar {
    display: none;
  }

  nav ul li {
    flex: 0 0 auto;
    margin: 0;
  }

  nav ul li a {
    font-size: 12px;
    padding: 8px 12px;
    display: inline-block;
    white-space: nowrap;
  }

}
flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 0 10px;
    gap: 10px;
    scrollbar-width: none;
  }

  nav ul::-webkit-scrollbar {
    display: none;
  }

  nav ul li {
    flex: 0 0 auto;
    margin: 0;
  }

  nav ul li a {
    font-size: 12px;
    padding: 8px 12px;
    display: inline-block;
    white-space: nowrap;
  }
}

.evenement-a-venir, .evenement-passe {
  margin-top: 40px;
}

.event-card {
  background-color: #fffaf5;
  border-left: 5px solid #d8b5c3;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: left;
}

.event-card h3 {
  margin-top: 0;
  color: #3c2a23;
}

.event-card p {
  color: #3c2a23;
  margin: 10px 0 0;
}

.event-prochain {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  background-color: #fffaf5;
  border-radius: 16px;
  max-width: 800px;
}

.event-prochain img.flyer {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.galerie {
  text-align: center;
  margin: 60px auto;
  padding: 20px;
  max-width: 1000px;
}

.galerie-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.galerie-photos img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  object-fit: cover;
}


nav ul {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 10px;
  margin: 0;
  list-style: none;
  scrollbar-width: none; /* Firefox */
  position: relative;
  z-index: 1001;
}

nav ul::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

nav ul li {
  flex: 0 0 auto;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #3c2a23;
  font-weight: bold;
  font-size: 14px;
  font-family: 'Helvetica Neue', sans-serif;
  padding: 8px 12px;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

nav ul li a:hover {
  transform: scale(1.1);
}

.event-button-wrapper {
  display: flex;
  justify-content: center;
  margin: 60px 0; /* espace haut et bas */
}

.event-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #eee1d6;
  color: #9e4373;
  padding: 12px 24px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.event-button:hover {
  background-color: #e5d4c4;
}

.event-button i {
  font-size: 1.2em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8b5c3;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1em;
  background-color: #fffaf5;
  box-sizing: border-box;
  color: #3c2a23;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a88b9e;
  font-style: italic;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c695ab;
  box-shadow: 0 0 8px rgba(198, 149, 171, 0.4);
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

