body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

nav a.active {
  pointer-events: none;   /* désactive le clic */
  cursor: default;        /* change le curseur */
  color: #b87333;         /* couleur différente pour montrer que c’est actif */
}

.lang-switch a.active {
  pointer-events: none;   /* désactive le clic */
  cursor: default;        /* change le curseur */
  color:  #b87333;         /* couleur différente pour montrer que c’est actif */
  text-decoration: underline; /* optionnel : style actif */
}
.header-top {
  background: none; /* supprime le fond bleu si non voulu */
  padding: 0;        /* supprime les marges internes */
  margin: 0;         /* supprime les marges externes */
  border: none;      /* supprime toute bordure */
}

.site-title {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

section {
  background: none; /* supprime le fond bleu si non voulu */
  padding: 0;        /* supprime les marges internes */
  margin: 0;         /* supprime les marges externes */
  border: none;      /* supprime toute bordure */
}

.footer {
  background: none; /* supprime le fond bleu si non voulu */
  padding: 0;        /* supprime les marges internes */
  margin: 0;         /* supprime les marges externes */
  border: none;      /* supprime toute bordure */
}

.wine-card {
  border: 1px solid #1C3454;
  padding: 1rem;
  margin: 1rem 0;
}


/* Ligne titre + langue */
.header-top {
  display: flex;
  justify-content: center;   /* centre le titre */
  align-items: center;
  background-color: #1C3454;
  padding: 0rem 2rem;
  color: white;
  position: relative;
  margin-bottom: 0rem;
}

.logo3 {
  width:450px;       /* ajuste ici la taille souhaitée */
  height: auto;      /* conserve les proportions */
  display: block;    /* évite les espaces parasites */
}


/* FR | EN à droite */
.lang-switch {
  position: absolute;
  right: 2rem;
  font-size: 0.9rem;
  font-weight: bold;
}

.lang-switch a {
  color: white;
  text-decoration: none;
  margin-left: 0.5rem;
}

.lang-switch a:hover {
  text-decoration: underline;
}

/* Menu horizontal */
.nav-vitrine {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: #1C3454;
  padding: 0.2rem 2rem;
  height: 70px; /* fixe la hauteur totale */
  min-height: 100px;
}


.nav-left,
.nav-right {
  display: flex;
  justify-content: space-evenly; /* espace égal entre chaque lien */
  flex-wrap: wrap;
  width: 100%;
}

.nav-vitrine a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-vitrine a:hover {
  text-decoration: underline;
}

/* Logo centré */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px; /* fixe la hauteur du menu */
  margin-bottom: 10px;
}

.logo {
  height: 100px; /* réduit légèrement */
  width: auto;
  margin: 0;
}

/* Trait cuivré */
.cuivre-bar {
  height: 2px;
  background: linear-gradient(to right, #b87333, #d4af37);
  width: 100%;
  margin: 0 auto;
}

/* Header complet fixé */
.header-vitrine {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* reste au-dessus du contenu */
}



.footer-vitrine {
  background-color: #1C3454;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Georgia', serif;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo2 {
  width: 500px; /* ajuste la taille ici */
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}

/* Réseaux sociaux */
.footer-socials {
  margin: 1rem 0;
}

.footer-socials a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.6rem; /* taille bien visible */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #b87333; /* effet cuivré au survol */
}


/* Mentions légales */
.footer-legal p {
  font-size: 0.8rem;
  margin: 0.3rem 0;
}

.footer-legal a {
  color: white;
  text-decoration: underline;
}

.page-background {
  background-image: url("../../images/contact.jpg");
  background-size: cover;       /* couvre toute la zone */
  background-position: center;  /* centré */
  background-repeat: no-repeat; /* pas de répétition */
  padding-bottom: 50px;         /* espace avant le footer */
}

.page-background {
  position: relative;
}

.page-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* voile sombre */
  pointer-events: none;
}

.page-background > * {
  position: relative;
  z-index: 2;
}

.page-title {
  margin-top: 170px; /* espace sous ton menu fixe */
  padding: 60px 0;   /* hauteur élégante */
  text-align: center;
}

.page-title h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #fff; /* ton bleu vitrine */
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
  margin: 0;
}

.contact-block {
  position: relative;
  background-image: url("../../images/bouchons.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  padding-bottom: 60px;
}

.contact-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* voile sombre */
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: stretch; /* force les deux colonnes à avoir la même hauteur */
  width: 100%;
}


.contact-info {
  flex: 1;
  min-width: 280px;
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.contact-info h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #b87333;
  margin: 15px 0;
  border-radius: 2px;
}


.contact-info h3 {
  font-size: 1.4rem;
  margin-top: 30px;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}


.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

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

.contact-form button {
  background-color: #1C3454;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.9);
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.contact-info h2,
.contact-info h3 {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.honeypot {
  display: none !important;
}

.blanctype {
  color: #fff
}

.contact-bock {
  position: relative;
  background-image: url("../../images/bouchons.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  color: white;
  margin-top: 40px;
}

.contact-bock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* voile sombre */
  z-index: 1;
}

.contact-map {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.contact-map iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}


.contact-block .contact-container,
.contact-bock .contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

iframe, img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .contact-block .contact-container,
  .contact-bock .contact-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .lang-switch {
    display: none;
  }
}

/* MENU MOBILE — VERSION CONTACT */

.mobile-menu-toggle {
  display: none;
  background-color: #1C3454;
  color: white;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}

.menu-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(28, 52, 84, 0.95);
  z-index: 9999;
  animation: fadeIn 0.3s ease forwards;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1C3454;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  animation: slideDown 0.4s ease forwards;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu li {
  margin: 1rem 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

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

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 100000;
}

.lang-switch-mobile {
  margin-top: 2rem;
  font-weight: bold;
}

.lang-switch-mobile a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
}

.lang-switch-mobile a.active {
  color: #b87333;
  text-decoration: underline;
  pointer-events: none;
}

@keyframes slideDown {
  from { opacity: 0; transform: translate(-50%, -60%) scale(0.95); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

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

@media (max-width: 768px) {
  .nav-vitrine {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  .lang-switch {
    display: none;
  }

  .nav-center {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-menu-overlay,
  .mobile-menu-toggle {
    display: none;
  }
}

/* Animation d’apparition */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Animation de disparition */
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.confirmation {
  background-color: #e8ffe8;
  border: 1px solid #4CAF50;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 16px;
  color: #2d7a2d;
  font-weight: 600;
  animation: fadeIn 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}



