:root {
  --orange70: #F57C00;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --black: #0C0C0C;
  --graylight: #F9F9F9;

  --font-title: 'Playfair Display', serif;
  --font-text: 'Poppins', sans-serif;
}

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

* {
  box-sizing: border-box;
}

/* BODY ET TYPOGRAPHIE */
body {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 400;
  color: var(--black);
}

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 3rem;
}

p {
  font-family: var(--font-text);
  line-height: 1.7;
}

.top-right-menu a,
.btn-retro,
.contact-cta {
  font-family: var(--font-text);
  font-weight: 600;
  letter-spacing: 0.6px;
}

/* FOND RADIAL */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,215,0,0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  display: block;
  height: 3px;
  background: var(--orange70);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MENU MOBILE */
@media (max-width: 900px) {
  .top-right-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    height: calc(100vh - 80px);
    width: 250px;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
  }

  .top-right-menu a {
    margin: 0;
    font-size: 1.2rem;
    color: var(--black);
  }

  .top-right-menu.show {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* PETITS ÉCRANS */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .deplacement-grid,
  .evenements-grid,
  .fournisseurs-track {
    grid-template-columns: 1fr !important;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-infos {
    padding: 2.5rem 2rem;
  }

  .contact-description {
    margin: auto;
  }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,248,240,0.95);
  border-bottom: 2px solid var(--orange70);
  z-index: 1000;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange70);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-name {
  font-family: 'Pacifico', cursive;
  font-size: 1.6rem;
  color: var(--black);
  white-space: nowrap;
}

.top-right-menu {
  display: flex;
  align-items: center;
}

.top-right-menu a {
  position: relative;
  margin-left: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--black);
  transition: color 0.3s ease;
}

.top-right-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--orange70);
  transition: width 0.3s ease;
}

.top-right-menu a:hover {
  color: var(--orange70);
}

.top-right-menu a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  min-height: calc(100vh - 80px);
  padding-top: 80px;
  background: url("img/hero.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  width: 400px;
  max-width: 85vw; /* Augmenté un peu pour mobile */
  height: auto;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,0.9))
    drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}

/* Ajoute cette règle pour baisser la taille du texte sur mobile */
@media (max-width: 600px) {
  h2 {
    font-size: 2rem !important;
  }
  .about-text h2 {
    font-size: 2.2rem !important;
  }
}

.hero-logo::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,0.55);
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}

.retro-title {
  font-size: 4rem;
  color: var(--orange70);
}

.btn-retro {
  display: inline-block;
  margin-top: 1rem;
  background: var(--orange70);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-retro:hover {
  transform: translateY(-5px) scale(1.03);
}

/* ABOUT */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #FFF8F0, #FFE8B0);
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}

.about-image img {
  width: 100%; /* Change 500px par 100% */
  max-width: 500px; /* On garde la limite max */
  height: auto;
  border-radius: 20px;
}

.about-text h2 {
  font-size: 3rem;
  color: var(--orange70);
}

/* DÉPLACEMENTS */

@media (max-width: 900px) {
  .deplacement-grid {
    grid-template-columns: 1fr !important;
    padding: 0 1rem;
  }
  
  .evenements-circles {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .evenement-circle {
    width: 100%;
    max-width: 400px;
  }
}
.deplacement-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #FFF8F0, #FFE8B0);
  text-align: center;
}

.deplacement-section h2 {
  font-size: 3rem;
  color: var(--orange70);
  margin-bottom: 1rem;
}

.deplacement-info {
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.deplacement-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1000px;
  margin: auto;
}

.village-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.village-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.village-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.village-info {
  padding: 1rem;
}

.village-info .jour {
  display: block;
  font-weight: 700;
  color: var(--orange70);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.village-info h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.map-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: var(--orange70);
}

/* ÉVÉNEMENTS */
.evenements-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #FFF8F0, #FFE8B0);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.evenements-section h2 {
  font-size: 3rem;
  color: var(--orange70);
  margin-bottom: 1.5rem;
}

.evenements-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.evenements-circles {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
}

.evenement-circle {
  width: 320px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evenement-circle:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.circle-img {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--orange70);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.evenement-circle:hover .circle-img img {
  transform: scale(1.08);
}

/* Badge flottant */
.circle-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--orange70);
  color: white;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.circle-info p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--black);
  font-weight: 500;
}

@media (max-width: 900px) {
  .evenement-circle {
    width: 90%;
  }
  .circle-img {
    width: 220px;
    height: 220px;
  }
}

/* FOURNISSEURS */
.fournisseurs-section {
  padding: 120px 0;
  background: var(--graylight);
  text-align: center;
  overflow: hidden;
}

.fournisseurs-section h2 {
  font-size: 3rem;
  color: var(--orange70);
  margin-bottom: 3rem;
}

.fournisseurs-message {
  max-width: 750px;
  margin: 0 auto 3.5rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--black);
}

.fournisseurs-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.fournisseurs-track {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.fournisseurs-track img {
  height: 80px;
  width: auto;
  opacity: 0.9;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.fournisseurs-track img:hover {
  transform: scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.25));
}

/* FOURNISSEURS – PHOTO DE FOND */
.fournisseurs-bg {
  position: relative;
  background: url("img/pproducteurs.jpg") center/cover no-repeat;
  padding: 140px 0;
}

.fournisseurs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,240,220,0.6), rgba(255,240,220,0.8));
}

.fournisseurs-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fournisseurs-bg h2 {
  color: var(--orange70);
}

.fournisseurs-bg .fournisseurs-message {
  color: var(--black);
}

/* CONTACT */
.contact-section {
  padding: 120px 2rem;
  background: linear-gradient(135deg, #FFF8F0, #FFE8B0);
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-text h2 {
  font-size: 3rem;
  color: var(--orange70);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-description {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
}

/* CONTACT INFOS & FORMULAIRE */
.contact-infos {
  background: url("img/biere.jpg") center/cover no-repeat;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  position: relative;
  color: var(--cream);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.contact-infos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  border-radius: 25px;
  z-index: 1;
}

.contact-infos:hover {
  transform: translateY(-5px) scale(1.02);
}

.contact-details {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

/* CONTACT LINE & ICONS */

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr !important; /* Force une seule colonne */
    gap: 2rem;
  }

  .contact-text {
    text-align: center;
    padding: 0 1rem;
  }

  .contact-infos {
    width: 100%;
    padding: 2rem 1rem;
    border-radius: 15px;
  }
}
.contact-line {
  display: flex;
  align-items: flex-start; /* Aligne l'icône en haut si le texte fait plusieurs lignes */
  gap: 15px;
  margin-bottom: 25px;
  text-decoration: none;
  color: inherit;
}

.contact-icon {
  flex-shrink: 0; /* Empêche l'icône de s'écraser sur mobile */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange70);
  color: white;
  border-radius: 50%;
}

.contact-line div p {
  margin: 0;
  font-size: 0.95rem; /* Un peu plus petit pour que ça rentre */
}

/* FORMULAIRE CONTACT */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0; /* aligné avec le haut des infos */
  position: relative;
  z-index: 2;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 15px;
  border: none;
  outline: none;
  font-family: var(--font-text);
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box; /* s'assure que padding n'agrandit pas le bloc */
}

.contact-form input {
  height: 45px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-infos .contact-form input,
.contact-infos .contact-form textarea {
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream);
}

.contact-form button {
  width: 100%;
  background: var(--orange70);
  color: white;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(245,124,0,0.45);
}

/* RESPONSIVE CONTACT */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .contact-infos {
    padding: 2rem;
  }

  .contact-description {
    margin: auto;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-line {
    justify-content: center;
  }

  .contact-line div {
    align-items: center;
  }
}

/* RESPONSIVE CONTACT */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .contact-infos {
    padding: 2rem;
  }

  .contact-description {
    margin: auto;
  }
}


/* BULLLES EN ARRIÈRE-PLAN */
.contact-bubbles::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,215,0,0.05) 2px, transparent 2px);
  background-size: 40px 40px;
  z-index: 1;
  animation: moveBubbles 20s linear infinite;
}

@keyframes moveBubbles {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

/* FOOTER */
.footer-new {
  position: relative;
  width: 100%;
  background: url("img/lien.jpg") center/cover no-repeat;
  color: var(--cream);
  padding: 4rem 2rem 2rem;
  text-align: center;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(160, 120, 80, 0.55),
    rgba(140, 100, 60, 0.65)
  );
  z-index: 1;
}

.footer-new h3,
.footer-new p,
.footer-new a {
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.footer-brand, .footer-contact, .footer-bottom-new {
  position: relative;
  z-index: 2;
}

.footer-brand h3 {
  font-size: 2rem;
  color: var(--orange70);
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-weight: 500;
}

.footer-socials a {
  margin: 0 0.5rem;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.footer-socials a:hover {
  transform: scale(1.2);
  color: var(--orange70);
}

.footer-bottom-new {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-brand h3 {
    font-size: 1.8rem;
  }
  .footer-socials a {
    font-size: 1.2rem;
  }
}

/* CURSEUR PERSONNALISÉ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange70);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

#bubbles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.section-separator {
  position: relative;  /* conteneur pour l'image absolute */
  width: 100%;
  height: 0;           /* ne prend aucune place */
  overflow: visible;   /* laisse l'image dépasser */
  z-index: 50;         /* au-dessus des sections */
  pointer-events: none; /* clics passent à travers */
}

.section-separator img {
  position: absolute;
  top: -0px;          /* ajuste selon l'effet souhaité */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;         /* toute la largeur de la page */
  height: auto;        /* respecte les proportions */
  max-width: 100%;     /* sécurité responsive */
  pointer-events: none;
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .brand-name {
    font-size: 1.2rem; /* Un peu plus petit pour laisser de la place au burger */
  }
  
  .header {
    padding: 0 1rem;
  }
}



