/* ═══════════════════════════════════════════════════════════
   MOEDHOU LANDBOU DIENSTE — styles.css
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --orange:     #e87722;
  --orange-dk:  #c25e0a;
  --green:      #1a4a1a;
  --green-mid:  #2d6e2d;
  --dark:       #1a1a1a;
  --text:       #333;
  --mid:        #555;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: 'Lato', sans-serif; color: var(--text); overflow-x: clip; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
p     { line-height: 1.85; margin-bottom: 14px; font-size: .97rem; color: var(--mid); }
p:last-child { margin-bottom: 0; }

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed; top: 24px; right: -440px; z-index: 9999;
  min-width: 300px; background: #fff;
  border-left: 5px solid var(--green-mid); border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25); padding: 16px 20px;
  transition: right .45s cubic-bezier(.22,1,.36,1);
  display: flex; align-items: flex-start; gap: 12px;
}
.toast.show { right: 24px; }
.toast.toast-error { border-left-color: #c0392b; }
.toast-icon  { font-size: 1.3rem; flex-shrink: 0; }
.toast-body  { flex: 1; }
.toast-title { font-weight: 700; font-size: .95rem; color: var(--green-mid); }
.toast-title.error { color: #c0392b; }
.toast-msg   { font-size: .85rem; color: var(--mid); }
.toast-close { background: none; border: none; cursor: pointer; font-size: 1rem; color: #999; }

/* ── Header (sticky wrapper) ────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ── Top bar ────────────────────────────────────────────────── */
.top-bar {
  text-align: center;
  padding: 8px 20px; font-size: .9rem;
}
.top-bar a { color: var(--green); font-weight: 700; }
.top-bar a:hover { color: var(--orange); }

/* ── Navigation ─────────────────────────────────────────────── */
nav {
  position: relative; z-index: 1;
  background: transparent;
  /* Dense dotted green line across full width */
  border-bottom: none;
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px 0 90px; height: 86px;   /* 90px left = logo circle width */
  overflow: visible;
  background-image: url('images/nav-bar.png');
  background-repeat: no-repeat;
  background-position: center calc(100% - 12px);
}

.page-title {
  text-align: center;
}

/* Nav-bar image: logo circle + dotted line, sits behind the links */
.nav-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: none;
  object-position: center;
  height: auto;
  bottom: 0;
  top: auto;
  z-index: 0;
  bottom: 8px;
  pointer-events: none;
}

.nav-links { display: flex; list-style: none; height: 100%; position: relative; z-index: 1; }
.nav-links li a {
  display: flex; align-items: center; height: 76px; margin-top: -8px; margin-left: 40px; padding: 0 24px;
  font-size: .88rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text); border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: color .2s, border-color .2s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--orange); border-bottom-color: var(--orange); }

/* Facebook button — black, matching original */
.nav-fb {
  position: relative; z-index: 1;
  width: 42px; height: 42px; margin-top: -42px; margin-left: 40px; background: #000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.25rem; flex-shrink: 0;
  transition: background .2s;
}
.nav-fb:hover { background: #333; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 26px; height: 2px; background: var(--green); display: block; }

/* ── Shared buttons ─────────────────────────────────────────── */
.btn-orange {
  display: inline-block;
  background: var(--orange); color: #fff;
  padding: 12px 34px; border-radius: 30px;
  font-size: .88rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-orange:hover { background: var(--orange-dk); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: url('images/hero.jpg') center top / cover no-repeat;
  overflow: hidden;
  line-height: 0;
  margin-top: -112px;   /* pull up behind top-bar (36px) + nav (76px) */
}

/* Badge: on top of everything in the hero */
.hero-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: clamp(260px, 33vw, 500px);
  opacity: .88;
  z-index: 3;
  pointer-events: none;
}

/* Plants: full-width, black is now transparent, orange wave baked in */
.hero-plants {
  position: relative; z-index: 2;
  width: 100%; display: block;
}

/* ── SOIL / VERSE ────────────────────────────────────────────── */
.hero-soil {
  position: relative;
  line-height: 0;
  margin-top: -2px;         /* seal seamlessly against plants bottom */
}
.soil-img {
  width: 100%; display: block;
}
/* Verse text centred over the soil image */
.soil-verse {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 30px 40px;
  text-align: center;
  line-height: 1.9;
}
.soil-verse p {
  color: #fff; font-size: 1.05rem; line-height: 1.9;
  max-width: 820px; margin-bottom: 22px;
}
.soil-verse p:last-child { margin-bottom: 0; }
.soil-verse em { color: rgba(255,255,255,.75); font-style: italic; }

/* Remove old soil wave classes (no longer used) */
.verse-soil, .soil-wave-out { display: none; }

/* ── WAT ONS BIED ───────────────────────────────────────────── */
.wat-section { background: #fff; padding: 60px 40px 80px; }

.wat-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  align-items: start;
  position: relative;
  gap: 0;
}

.wat-photo-col {
  min-height: 550px;
  background: url('images/portrait-roller.jpg') 10% center / auto 70% fixed no-repeat;
  position: relative; z-index: 1;
  background-repeat: no-repeat;
}

.wat-arc {
  position: absolute;
  left: calc(32% - 175px);
  top: 50%;
  transform: translateY(-50%);
  width: 350px; height: 350px;
  z-index: 2;
  pointer-events: none;
}

.wat-text { padding: 10px 0 0 50px; position: relative; z-index: 1; }

.h-green {
  font-family: 'Papyrus', serif; color: var(--green);
  font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: .12em; line-height: 1.1;
  margin-bottom: 16px;
}
.h-white {
  font-family: 'Cinzel', serif; color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: .1em; line-height: 1.1;
  margin-bottom: 16px;
}
.p-white { color: rgba(255,255,255,.88); line-height: 1.85; margin-bottom: 16px; font-size: .97rem; }

/* ── BEFORE / AFTER ─────────────────────────────────────────── */
.ba-section { display: grid; grid-template-columns: 1fr 1fr; overflow: visible; }
.ba-half    { position: relative; overflow: visible; }
.ba-half:first-child {
  background: url('images/before.jpg') left / auto 50% fixed no-repeat;
  min-height: 550px;
}
.ba-half:last-child {
  background: url('images/after.jpg') right / auto 50% fixed no-repeat;
  min-height: 550px;
}
.ba-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Papyrus', fantasy;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  pointer-events: none;
}

/* ── WIE ONS IS ─────────────────────────────────────────────── */
.wie-section {
  position: relative;
  z-index: 1;
  background-color: var(--green);
  padding: 70px 40px 80px;
}

.wie-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.wie-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  align-items: start;
}

.wie-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}

/* Sunset photo with badge centred on it */
.wie-photo { position: relative; }
.wie-photo > img:first-child { width: 100%; display: block; }
.wie-badge {
  position: absolute; inset: 0;
  margin: auto;
  width: 80%; height: auto;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: .82;
  pointer-events: none;
}

.sprocket-zone {
  position: relative;
  z-index: 10;
  background: #fff;
  height: 340px;
  margin-top: -3px;
}

.s-arc {
  position: absolute;
  top: -320px;                 /* push centre up to section boundary */
  left: 50%; transform: translateX(-50%);
  width: 640px; height: 640px;
  border: 6px dashed rgba(232, 119, 34, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.s-img {
  position: absolute;
  top: -80px;                  /* straddles the boundary */
  left: 50%; transform: translateX(-50%);
  width: clamp(320px, 42%, 520px);
  z-index: 2;
}

/* ── Veg banner ─────────────────────────────────────────────── */
.veg-banner     { line-height: 0; }
.veg-banner img { width: 100%; max-height: 320px; object-fit: cover; }

/* ── Verse white ────────────────────────────────────────────── */
.verse-white {
  background: #fff; padding: 44px 40px 0; text-align: center;
}
.verse-white p { font-size: .97rem; color: var(--mid); max-width: 800px; margin: 0 auto; }

/* ── Wave wrap ──────────────────────────────────────────────── */
.wave-wrap     { background: #fff; line-height: 0; }
.wave-wrap svg { display: block; width: 100%; }

/* ── Dark verse panel ───────────────────────────────────────── */
.verse-dark {
  background: var(--dark); padding: 50px 60px 55px;
  position: relative; overflow: hidden;
}

.verse-dark-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
}
.badge       { flex-shrink: 0; }
.badge img   { width: 160px; height: 160px; object-fit: contain; }
.copy        { color: rgba(255,255,255,.82); font-size: .97rem; line-height: 1.9; }

/* ── Contact form ───────────────────────────────────────────── */
.contact-section {
  background: var(--dark); padding: 0 60px 60px; position: relative; overflow: visible;
}

.contact-inner  { max-width: 1100px; margin: 0 auto; padding-top: 50px; overflow: visible;
}
.contact-header {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 12px; margin-bottom: 24px;
}
.contact-header h2 {
  font-family: 'Cinzel', serif; color: var(--orange);
  font-size: clamp(1.3rem, 3vw, 2rem); letter-spacing: .08em;
}
.clinks a { color: var(--orange); font-weight: 700; }
.clinks a:hover { text-decoration: underline; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.form-group { margin-bottom: 24px; border-bottom: 1px solid var(--orange); padding-bottom: 4px; }
.form-group label { display: block; color: var(--orange); font-size: .9rem; margin-bottom: 4px; }
.form-group input,
.form-group textarea {
  width: 100%; background: transparent; border: none;
  color: #fff; font-family: 'Lato', sans-serif; font-size: 1rem; outline: none;
}
.form-group textarea { min-height: 80px; resize: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.2); }

.btn-submit {
  flex: 1; max-width: 460px; margin: 16px auto 30px;
  padding: 15px 20px; border: none; border-radius: 30px;
  background: var(--orange); color: #fff;
  font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; display: block; transition: background .2s;
}
.btn-submit:hover { background: var(--orange-dk); }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background: var(--green); color: #fff; padding: 50px 40px 30px; }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto 40px;
}
.foot-logo-row  { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.foot-logo-circle {
  width: 54px; height: 54px; border: none;
  border-radius: 50%; overflow: visible; flex-shrink: 0;
}
.foot-logo-circle img { width: 54px; height: 54px; object-fit: contain; }
.foot-brand-name { font-family: 'Cinzel', serif; font-size: 1.05rem; }
.foot-brand-sub  { font-size: .7rem; color: var(--orange); letter-spacing: .15em; text-transform: uppercase; }
.foot-desc  { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; }
.foot-col h4 { color: var(--orange); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 9px; }
.foot-col li a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
.foot-col li a:hover { color: var(--orange); }
.foot-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px;
  text-align: center; color: rgba(255,255,255,.5); font-size: .85rem;
}
.foot-bottom p { color: rgba(255,255,255,.5); margin-bottom: 4px; }
.tagline { font-style: italic; color: var(--orange) !important; opacity: .8; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {

  nav { padding: 0 16px; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; z-index: 99;
    border-bottom: 3px solid var(--green);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { height: auto; padding: 16px 20px; border-bottom: 1px solid #eee; }
  .hamburger { display: flex; }

  .hero-section { min-height: 55vw; }

  .wat-inner { grid-template-columns: 1fr; }
  .wat-text  { padding: 20px 0 0; }
  .wat-arc   { display: none; }

  .ba-section { grid-template-columns: 1fr; }

  .wie-inner  { grid-template-columns: 1fr; }
  .s-arc      { width: 340px; height: 340px; top: -170px; }
  .s-img      { top: -30px; width: 280px; }
  .sprocket-zone { height: 220px; }
  .hero-section { margin-top: 0; }
  .verse-dark   { padding: 40px 20px; }
  .verse-dark-inner { flex-direction: column; gap: 20px; }
  .contact-section  { padding: 0 20px 40px; }
  .form-row         { grid-template-columns: 1fr; gap: 0; }
  .foot-grid        { grid-template-columns: 1fr; gap: 28px; }
}