/* ============================================================
   AGROMA INVEST HOLDING SARL — styles.css
   Gemeinsame Styles für alle Seiten.
   Farben, Schriften, Navigation und Footer zentral ändern.
   ============================================================ */

/* CI-Schriften: Helvetica (Systemschrift, kein Internet-Laden nötig)
   Quelle: CI-Präsentation Agroma, April 2026
   Helvetica Bold = Überschriften, Regular = Text, Oblique = Hervorhebungen */

/* --- CSS-Variablen: Farben & Abstände zentral ändern --- */
:root {
  --g:   #4A7C2F;   /* Hauptgrün */
  --gm:  #7DB84A;   /* Hellgrün */
  --gh:  #D6E8BB;   /* Sehr helles Grün */
  --gbg: #F1F6EA;   /* Grüner Hintergrund */
  --o:   #B26F31;   /* Orange/Bronze-Akzent */
  --br:  #6B5A2E;   /* Braun */
  --wh:  #FFFFFF;
  --cr:  #F8F5EF;   /* Cremefarbener Hintergrund */
  --dk:  #1A2E10;   /* Dunkelgrün (für dunkle Blöcke) */
  --tx:  #1E1E1E;   /* Haupttext (CI: Corps #1E1E1E) */
  --txm: #474738;   /* Mittlerer Text */
  --txs: #7A7A60;   /* Heller Text */
  --bor: rgba(74,124,47,.14);
  --sh:  0 4px 24px rgba(74,124,47,.10);
  --shl: 0 12px 48px rgba(0,0,0,.12);
  --fd:  'Helvetica Neue', Helvetica, Arial, sans-serif; /* CI: Helvetica Bold – Überschriften */
  --fb:  'Helvetica Neue', Helvetica, Arial, sans-serif; /* CI: Helvetica – Fließtext */
  --r:   6px;
  --mw:  1160px;    /* Maximale Seitenbreite */
  --s:   88px;      /* Standard-Abstand zwischen Sektionen */
}

/* --- Reset & Basis --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background-color: #fff;
  color: var(--tx);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* --- Inhaltsbreite --- */
.w { max-width: var(--mw); margin: 0 auto; padding: 0 36px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bor);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(74,124,47,.09); }

.nav-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 36px;
}
.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--txm);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.aktiv { color: var(--g); }

/* Aktiver Seitenlink erhält Unterstrich */
.nav-links a.aktiv {
  border-bottom: 2px solid var(--g);
  padding-bottom: 2px;
}

.nav-links .kontakt-btn {
  padding: 8px 17px;
  background: var(--g);
  color: #fff !important;
  border-radius: var(--r);
  font-weight: 600;
  border-bottom: none !important;
}
.nav-links .kontakt-btn:hover { background: #3d6827; }

/* Hamburger-Menü (Mobil) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--tx);
  border-radius: 2px;
}

/* Mobiles Menü */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,28,8,.97);
  z-index: 199;
  padding: 88px 24px 28px;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.mob-menu a {
  font-family: var(--fd);
  font-size: 26px;
  color: #fff;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mob-menu a:last-child { color: var(--o); }
.mob-menu.offen { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dk);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 44px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}
.footer-logo-wrap {
  background: rgba(255,255,255,.09);
  border-radius: 9px;
  padding: 11px 15px;
  display: inline-block;
  margin-bottom: 13px;
}
.footer-logo-wrap img { height: 38px; width: auto; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  line-height: 1.72;
  max-width: 230px;
}
.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.38);
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--gm); color: var(--gm); }
.footer-social svg { width: 14px; height: 14px; }

.footer-col h5 {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.36);
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.48);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gm); }

.footer-talent {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 13px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-talent p { font-size: 12px; color: rgba(255,255,255,.38); }
.footer-talent a {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(125,184,74,.38);
  color: var(--gm);
  transition: all .2s;
}
.footer-talent a:hover { background: rgba(125,184,74,.1); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 36px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.27); }

/* ============================================================
   ALLGEMEINE HILFSKLASSEN (überall verwendbar)
   ============================================================ */

/* Tags / Badges */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
}
.tag-g  { background: rgba(74,124,47,.11); color: var(--g); border: 1px solid rgba(74,124,47,.22); }
.tag-o  { background: rgba(178,111,49,.09); color: var(--o); border: 1px solid rgba(178,111,49,.22); }
.tag-cr { background: rgba(214,232,187,.5); color: var(--br); border: 1px solid rgba(107,90,46,.18); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r);
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-gruen { background: var(--g); color: #fff; }
.btn-gruen:hover { background: #3d6827; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,124,47,.3); }
.btn-weiss-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-weiss-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* Beschriftungs-Label vor Überschriften */
.lbl {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 14px;
}
.lbl::before { content: ''; width: 20px; height: 2px; background: var(--o); display: block; border-radius: 2px; }
.lbl-hell { color: var(--gh); }
.lbl-hell::before { background: var(--gh); }

/* Überschriften */
.h2 {
  font-family: var(--fd);
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 700; /* CI: Helvetica Bold */
  line-height: 1.09;
  color: var(--tx);
  margin-bottom: 16px;
}
.h2 em { font-style: italic; color: var(--g); }
.h2-hell { color: #fff; }
.h2-hell em { color: var(--gh); }

/* Lead-Text */
.lead { font-size: 16px; color: var(--txm); line-height: 1.82; max-width: 560px; }
.lead-hell { color: rgba(255,255,255,.72); }

/* Trennlinie */
.trenn { background: var(--bor); width: 2px; }

/* Hinweis-Box (z.B. NDA-Hinweis) */
.hinweis {
  margin-top: 16px;
  padding: 12px 16px;
  border-left: 3px solid var(--o);
  background: rgba(178,111,49,.05);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 13px;
  color: var(--txs);
}
.hinweis strong { color: var(--o); }
.hinweis a { color: var(--o); }

/* Fakten-Tabelle */
.fakten { margin-top: 20px; border-top: 1px solid var(--bor); }
.fakten-zeile {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--bor);
}
.fakten-key { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--txs); }
.fakten-val { font-family: var(--fd); font-size: 13px; font-weight: 600; color: var(--tx); text-align: right; max-width: 62%; }

/* Karte (weiß, mit Rahmen) */
.karte {
  background: var(--wh);
  border: 1.5px solid var(--bor);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(74,124,47,.04);
}
.karte:hover { border-color: var(--g); box-shadow: var(--sh); transform: translateY(-3px); }
.karte svg { width: 30px; height: 30px; color: var(--g); margin-bottom: 12px; }
.karte h3 { font-family: var(--fd); font-size: 18px; font-weight: 600; color: var(--tx); margin-bottom: 7px; }
.karte p { font-size: 13px; color: var(--txs); line-height: 1.78; }

/* Fortschrittsbalken (in Portfolio-Karten) */
.balken-wrap { margin-top: 18px; display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--txs); }
.balken { flex: 1; height: 2px; background: var(--bor); border-radius: 2px; }
.balken-fill { height: 100%; background: var(--gm); border-radius: 2px; }

/* Zitat-Block */
.zitat-wrap {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 36px 40px;
  background: var(--wh);
  border-left: 4px solid var(--g);
  border-radius: 0 var(--r) var(--r) 0;
  box-shadow: var(--sh);
}
.zitat-deko { font-family: var(--fd); font-size: 90px; line-height: .65; color: var(--g); opacity: .2; user-select: none; }
.zitat-text { font-family: var(--fd); font-size: clamp(16px,2.2vw,23px); font-style: italic; color: var(--tx); line-height: 1.5; margin-bottom: 10px; }
.zitat-quelle { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--txs); }

/* Dunkler Banner-Block */
.banner-dunkel {
  background: var(--dk);
  border-radius: var(--r);
  padding: 36px 40px;
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE (Tablets & Mobil)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --s: 52px; }
  .nav-links, .nav-links + div { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner, .w { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom, .footer-talent { padding: 13px 18px; }
  .footer-bottom { flex-direction: column; }
  .zitat-wrap { grid-template-columns: 1fr; padding: 22px; }
  .zitat-deko { display: none; }
  .banner-dunkel { padding: 22px 18px; }
}

/* ============================================================
   SEITENSPEZIFISCHE HERO-BEREICHE
   ============================================================ */

/* Seiten-Hero (kleiner als Startseite, für Unterseiten) */
.seiten-hero {
  background: var(--dk);
  padding: 120px 0 52px;
  position: relative;
  overflow: hidden;
}
.seiten-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18,32,8,.95) 0%, rgba(18,32,8,.70) 100%);
}
.seiten-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.seiten-hero-inhalt {
  position: relative;
  z-index: 2;
}
.seiten-hero h1 {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 10px;
}
.seiten-hero h1 em { font-style: italic; color: var(--gh); }
.seiten-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
}
