/* ===============================
   RESET GLOBAL
   =============================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; font-family: "Montserrat", sans-serif; scroll-behavior: smooth; background:#fff; color:#0b2d0b; }

/* Scrollbars */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #dfffd8; border-radius: 6px; }
::-webkit-scrollbar-thumb { background-color: #065f2d; border-radius: 6px; border: 3px solid #dfffd8; }
::-webkit-scrollbar-thumb:hover { background-color: #39ff14; }
* { scrollbar-width: thin; scrollbar-color: #065f2d #dfffd8; }

/* ===============================
   NAVIGATION & HAMBURGER
   =============================== */
.navbar { 
  position: fixed; 
  top:0; 
  width:100%; 
  display:flex; 
  align-items:center; 
  padding:14px 20px; 
  background: linear-gradient(180deg, rgba(38, 255, 0, 0.329), rgba(24, 121, 6, 0.8)); 
  backdrop-filter: blur(6px); 
  z-index:2000; 
  gap:1rem;
}

.logo {
  color: #f7ffb0;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.nav-links {
  display:flex; 
  gap:18px; 
  margin-left:auto; 
  align-items:center; 
  list-style:none;
  padding:0;
}

.nav-links a { 
  padding:8px 12px; 
  border-radius:8px; 
  color:#ffffff; 
  font-weight:600; 
  text-decoration:none;
  transition: 0.2s;
}

.nav-links a:hover { 
  background: #f0b800; 
  color:#fff; 
}

/* Hamburger */
.hamburger-menu { 
  display: none;
  cursor: pointer; 
  flex-direction: column; 
  justify-content: space-between;
  width: 32px;
  height: 24px;
  margin-left: auto;
  z-index: 3001;
  padding: 6px;
  border-radius: 6px;

  /* fond discret pour être visible sur images sombres */
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}

.hamburger-menu .bar { 
  width: 100%; 
  height: 3px; 
  background: #fff;  
  border-radius: 2px; 
  transition: all 0.35s ease; 
  transform-origin: center;
  
  /* contour pour visibilité */
  outline: 1px solid rgba(0, 0, 0, 0);
}

/* Hamburger → croix */
.hamburger-menu.active .bar:nth-child(1) { 
  transform: rotate(45deg) translate(6px, 6px); 
}
.hamburger-menu.active .bar:nth-child(2) { 
  opacity: 0; 
}
.hamburger-menu.active .bar:nth-child(3) { 
  transform: rotate(-45deg) translate(6px, -6px); 
}

/* Responsive menu */
@media(max-width:900px){
  .hamburger-menu { display:flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    background: linear-gradient(180deg, rgba(6,25,6,0.98), rgba(6,25,6,0.96));
    padding-top: 80px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 2500;
  }

  .nav-links.open { 
    display:flex; 
    transform: translateX(0); 
  }

  .nav-links a { 
    font-size: 1.2rem; 
    color:#fff; 
    padding:12px 20px; 
  }

  /* Navbar transparente mais conserve visibilité du menu */
  .navbar { 
    background: rgba(0, 0, 0, 0) !important;
    backdrop-filter: blur(4px) !important;
  }

  .logo { display:none; }
}

/* ===============================
   FULL SCREEN LEGENDES
   =============================== */
.full-screen-legende {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.legende-wrapper { 
  max-width: 1200px; 
  width: 100%; 
  color: #0a260a; 
  background: rgb(255, 255, 255); 
  padding: 45px 50px; 
  border-radius: 25px; 
  display: flex; 
  flex-direction: column; 
  gap: 40px; 
}

.legende-header { text-align: center; margin-bottom: 10px; }
.legende-header h2 { font-family: "Cinzel", serif; font-size: 2.7rem; margin-bottom: 15px; color: #065f2d; }

.legende-intro { font-size: 1.25rem; font-weight: 500; max-width: 900px; margin: 0 auto; line-height: 1.6; }

.legende-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.legende-block { font-size: 1.1rem; line-height: 1.6; }
.legende-block h3 { font-size: 1.45rem; margin-bottom: 10px; color: #0a4b1d; border-left: 6px solid #137e01; padding-left: 12px; }

@media(max-width:900px){ .legende-grid { grid-template-columns: 1fr; } }

/* ===============================
   SECTIONS FERME, VENTES, LIVRAISONS
   =============================== */
.full-screen-ferme, .full-screen-ventes, .full-screen-livraisons {
  height: 100vh; width:100%; display:flex; justify-content:center; align-items:center; padding:40px; backdrop-filter: blur(4px); position:relative;
}

.ferme-wrapper, .ventes-wrapper, .livraisons-wrapper {
  max-width: 1100px; width:100%; background:#fff; padding:45px 50px; border-radius:25px; display:flex; flex-direction:column; gap:40px;
}

.ferme-header, .ventes-header, .livraisons-header { text-align:center; }
.ferme-header h2, .ventes-header h2, .livraisons-header h2 { font-family:"Cinzel", serif; font-size:2.5rem; color:#065f2d; margin-bottom:10px; }
.ferme-intro, .ventes-intro, .livraisons-intro { font-size:1.25rem; font-weight:500; color:#0a260a; line-height:1.6; }

.ferme-content, .ventes-content, .livraisons-content { display:flex; flex-direction:column; gap:18px; font-size:1.15rem; line-height:1.65; color:#0a260a; }
.ferme-content p strong, .ventes-content p strong, .livraisons-content strong { color:#065f2d; font-weight:700; }

.ferme-final, .ventes-final, .livraisons-final { font-size:1.28rem; font-weight:600; margin-top:10px; color:#064d26; }

.autocollant-livraisons { position:absolute; bottom:0; right:0; width:480px; height:auto; pointer-events:none; z-index:10; }
@media(max-width:1024px){ .autocollant-livraisons { display:none; } }

@media(max-width:900px){
  .ferme-wrapper, .ventes-wrapper, .livraisons-wrapper { padding:30px 25px; }
  .ferme-header h2, .ventes-header h2, .livraisons-header h2 { font-size:2rem; }
  .ferme-intro, .ventes-intro, .livraisons-intro { font-size:1.15rem; }
  .ferme-content, .ventes-content, .livraisons-content { font-size:1.05rem; }
  .horaires p { font-size:1.1rem; }
}

/* ===============================
   HERO CONTACT
   =============================== */
.full-screen-contact { height:100vh; width:100%; display:flex; justify-content:center; align-items:center; padding:40px; background: rgba(0,40,0,0.45); backdrop-filter:blur(4px); }
.hero-contact { display:flex; justify-content:space-between; align-items:center; max-width:1200px; width:100%; gap:40px; background:#fff; padding:40px; border-radius:25px; }
.contact-text { flex:1; display:flex; flex-direction:column; gap:20px; color:#0a260a; }
.contact-text h2 { font-size:2.6rem; color:#065f2d; font-family:"Cinzel", serif; }
.contact-text p { font-size:1.2rem; line-height:1.6; }
.contact-final { font-weight:600; color:#064d26; }
.contact-map { flex:1; border-radius:18px; overflow:hidden; box-shadow:0 8px 20px rgba(0,165,27,0.733); }
.contact-map iframe { width:100%; height:100%; border:none; }
@media(max-width:900px){
  .hero-contact { flex-direction:column; padding:25px; }
  .contact-text h2 { font-size:2rem; }
  .contact-text p { font-size:1.1rem; }
  .contact-map { width:100%; height:300px; }
}

/* ===============================
   PARTENAIRES
   =============================== */
.full-screen-partenaires { height:100vh; width:100%; display:flex; justify-content:center; align-items:center; padding:40px; background: rgba(0,40,0,0.45); backdrop-filter: blur(4px); position:relative; }
.partenaires-wrapper { max-width:1100px; width:100%; background:#fff; padding:45px 50px; border-radius:25px; display:flex; flex-direction:column; gap:35px; }
.partenaires-header { text-align:center; }
.partenaires-header h2 { font-size:2.4rem; color:#065f2d; font-family:"Cinzel", serif; margin-bottom:10px; }
.partenaires-intro { font-size:1.2rem; color:#0a260a; font-weight:500; line-height:1.55; margin-bottom:10px; }
.liste-partenaires { display:flex; flex-wrap:wrap; justify-content:center; gap:18px; padding:10px 0; }
.btn-partenaire { padding:14px 28px; background:#cff3cf; color:#065f2d; font-size:1.1rem; font-weight:600; border-radius:40px; text-decoration:none; transition:all 0.35s ease; border:2px solid #faab02; }
.btn-partenaire:hover { transform: translateY(-5px) scale(1.05); background:#f7a102; color:#000; box-shadow:0 0 10px #189c00, 0 0 60px #a4ff9a; }
.partenaires-final { text-align:center; margin-top:10px; font-size:1.15rem; font-weight:600; color:#064d26; }
@media(max-width:900px){
  .partenaires-wrapper { padding:30px 25px; }
  .partenaires-header h2 { font-size:2rem; }
  .partenaires-intro { font-size:1.1rem; }
  .btn-partenaire { font-size:1rem; padding:12px 22px; }
}

/* ===============================
   RESEAUX SOCIAUX
   =============================== */
.reseaux-fullscreen { height:100vh; width:100%; display:flex; justify-content:center; align-items:center; padding:0 20px; text-align:center; background:url('images/bg-website.jpg') center/cover no-repeat; position:relative; color:#f0fff2; }
.reseaux-fullscreen::before { content:""; position:absolute; inset:0; background: rgba(0,20,0,0.55); z-index:0; }
.reseaux-wrapper { position:relative; z-index:1; max-width:900px; }
.reseaux-title { font-family:"Cinzel", serif; font-size:2.5rem; margin-bottom:1rem; color:#ffc402; text-shadow:0 0 15px #ffc402; }
.reseaux-intro { font-family:"Montserrat", sans-serif; font-size:1.2rem; line-height:1.6; margin-bottom:1rem; color:#ffc402; }
.reseaux-buttons { display:flex; flex-wrap:wrap; justify-content:center; gap:18px; margin:2rem 0; }
.reseaux-btn { display:flex; align-items:center; gap:10px; padding:14px 28px; border-radius:40px; font-size:1.1rem; font-weight:600; color:#ffc402; background:#ffc402; text-decoration:none; transition:all 0.35s ease; }
.reseaux-btn i { font-size:1.4rem; }
.reseaux-btn:hover { transform: scale(1.05) translateY(-2px); box-shadow:0 0 20px #ffc402,0 0 40px #000; }
.reseaux-credits { font-size:0.95rem; color:#ffc402; margin-top:1.5rem; text-shadow:0 0 5px rgba(0,0,0,0.5); }
@media(max-width:768px){ .reseaux-title{font-size:2rem} .reseaux-intro{font-size:1rem} .reseaux-btn{font-size:1rem;padding:12px 22px} }

/* ===============================
   CONTENT CARD
   =============================== */
.content-card { background:#ffc402; color:#082108; padding:28px; border-radius:18px; max-width:1100px; margin:80px auto; box-shadow:0 8px 30px rgba(0,0,0,0.25); position:relative; z-index:2; }
h2 { font-family:"Cinzel", serif; font-size:1.9rem; margin-bottom:0.6rem; }
h3 { font-family:"Cormorant Garamond", serif; font-size:1.2rem; margin:1rem 0 0.5rem; }

/* ===============================
   BACKGROUNDS
   =============================== */
.background-overlay { background-size:cover; background-position:center; min-height:100vh; display:flex; align-items:center; justify-content:center; padding:40px 20px; position:relative; }
.troisieme-background { background-image: url('images/bg-website.jpg'); }
.sixieme-background { background-image: url('images/jardin.jpeg'); }
.background-overlay::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(2,10,2,0), rgba(2,10,2,0.445)); z-index:0; pointer-events:none; }

/* ===============================
   FOOTER
   =============================== */
.footer-section { background: linear-gradient(180deg, #ffc402, rgb(0,0,0)); color:#dfffd8; text-align:center; padding:40px 20px; display:flex; flex-direction:column; justify-content:center; align-items:center; }
.footer-buttons { display:flex; gap:24px; margin:20px 0; flex-wrap:wrap; }
.footer-buttons a.btn-social { display:flex; align-items:center; justify-content:center; width:90px; height:90px; border-radius:50%; font-size:2rem; color:#fff; background:rgba(255,255,255,0.05); box-shadow:0 0 15px #ffc402; transition:0.4s; }
.footer-buttons a.btn-social:hover { transform: scale(1.2) rotate(-5deg); background:#ffc402; color:#000; box-shadow:0 0 25px #ffc402,0 0 50px #ffc402; }
.footer-credits { color:#a4ff9a; text-shadow:0 0 5px #000; margin-top:15px; }

