
/* ── Variables & Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2a5c3f;
  --green-light: #3d8a5e;
  --green-pale:  #eaf2ec;
  --gold:        #b8936a;
  --dark:        #1c1c1c;
  --cream:       #f8f3eb;
  --cream2:      #f0e8d8;
  --white:       #ffffff;
  --text:        #3a3530;
  --text-light:  #6b6058;
  --nav-h:       72px;
  --radius:      6px;
  --shadow:      0 4px 20px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Lora', 'Georgia', serif;
  line-height: 1.3;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Section layout ── */
section { padding: 80px 0; }
section.bg-cream  { background: var(--cream); }
section.bg-white  { background: var(--white); }
section.bg-green  { background: var(--green); color: var(--white); }
section.bg-cream2 { background: var(--cream2); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green);
  margin-bottom: 12px;
}
section.bg-green .section-header h2 { color: var(--white); }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; }
section.bg-green .section-header p { color: rgba(255,255,255,.75); }

.leaf-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 14px auto 0;
}
.leaf-divider::before,
.leaf-divider::after {
  content: ''; display: block;
  width: 50px; height: 1px;
  background: var(--gold);
}
.leaf-divider i { color: var(--gold); font-size: .9rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: .88rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer; border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-white { background: var(--white); color: var(--green); border-color: var(--white); }
.btn-white:hover { background: var(--cream); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { filter: brightness(1.1); }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--nav-h);
  background: rgba(248,243,235,.97);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px;
  z-index: 1000;
  border-bottom: 1px solid rgba(42,92,63,.15);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-logo img { height: 48px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); border-color: var(--green); }
.nav-links a.btn-nav {
  background: var(--green); color: var(--white);
  padding: 8px 18px; border-radius: var(--radius);
  border: none;
}
.nav-links a.btn-nav:hover { background: var(--green-light); }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.4rem; cursor: pointer;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  margin-top: var(--nav-h);
  height: 280px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,92,63,.75), rgba(28,28,28,.6));
}
.page-hero-content {
  position: relative; z-index: 1; text-align: center; color: var(--white);
}
.page-hero-content h1 { font-size: clamp(2rem,5vw,3.4rem); }
.page-hero-content p { margin-top: 8px; opacity: .85; font-size: 1rem; }

/* ── Cards ── */
.cards-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.13); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px 26px 28px; }
.card-body h3 { font-size: 1.25rem; color: var(--green); margin-bottom: 10px; }
.card-body p { font-size: .93rem; color: var(--text-light); }
.card-body .btn { margin-top: 18px; }

/* ── Team grid ── */
.team-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}
.team-card { text-align: center; }
.team-card img {
  width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--green-pale); margin: 0 auto 16px;
}
.team-card h4 { font-size: 1.05rem; color: var(--green); margin-bottom: 4px; }
.team-card p { font-size: .88rem; color: var(--text-light); }

/* ── Hours table ── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,.12); }
section.bg-white .hours-table tr { border-color: rgba(0,0,0,.06); }
.hours-table td { padding: 10px 0; font-size: .93rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--gold); }
section.bg-white .hours-table td:last-child { color: var(--green); }

/* ── Contact section ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-block { margin-bottom: 28px; }
.contact-info-block h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-info-block p, .contact-info-block a { font-size: .95rem; }
.contact-info-block a:hover { color: var(--green); }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(42,92,63,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--text);
  transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.map-frame { border-radius: var(--radius); overflow: hidden; height: 420px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85); }

/* ── Contact form ── */
.contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.4rem; color: var(--green); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .83rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(0,0,0,.14); border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: .95rem;
  background: var(--cream); color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(42,92,63,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Menu / Carte ── */
.menu-tabs { display: flex; gap: 0; justify-content: center; margin-bottom: 48px; border-bottom: 2px solid var(--cream2); }
.menu-tab {
  padding: 12px 28px; font-size: .88rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; background: none; cursor: pointer; color: var(--text-light);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.menu-tab.active, .menu-tab:hover { color: var(--green); border-color: var(--green); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-category { margin-bottom: 44px; }
.menu-category h3 {
  font-size: 1.3rem; color: var(--green);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream2);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.menu-category h3 i { color: var(--gold); }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,.07);
}
.menu-item:last-child { border: none; }
.menu-item-name { font-size: .96rem; font-weight: 600; color: var(--dark); }
.menu-item-desc { font-size: .83rem; color: var(--text-light); margin-top: 2px; font-style: italic; }
.menu-item-price { font-size: .96rem; font-weight: 700; color: var(--green); white-space: nowrap; margin-left: 16px; }

/* ── Events ── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.event-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.event-card img { width: 100%; height: 200px; object-fit: cover; }
.event-card-body { padding: 22px 24px; }
.event-card-body h3 { color: var(--green); margin-bottom: 8px; }
.event-card-body p { font-size: .9rem; color: var(--text-light); }
.event-placeholder {
  height: 200px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--green-light);
}

/* ── CTA band ── */
.cta-band {
  background: var(--green);
  padding: 60px 24px; text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem,3.5vw,2.4rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 28px; }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
footer h4 { font-family: 'Nunito', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
footer ul li { margin-bottom: 8px; }
footer ul li a { font-size: .88rem; transition: color .2s; }
footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px; text-align: center; font-size: .82rem;
}
.footer-socials { display: flex; gap: 12px; margin-top: 14px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: background .2s, border-color .2s;
}
.footer-socials a:hover { background: var(--green); border-color: var(--green); color: var(--white); }

/* ── Scroll top ── */
#scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--green); color: var(--white);
  border: none; border-radius: var(--radius); cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: .85rem; z-index: 900; box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: background .2s;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { background: var(--green-light); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  #navbar { padding: 0 18px; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: var(--nav-h); left: 0; width: 100%; background: var(--cream); border-bottom: 2px solid var(--green); padding: 8px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 13px 24px; font-size: .9rem; border-bottom: none; }
  .nav-links a.btn-nav { margin: 10px 24px; border-radius: var(--radius); }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .menu-tabs { flex-wrap: wrap; }
}
