/* ============================================================
   FRISCHMARKT HOLZKIRCHEN — styles.css
   Farben: Dunkelgrün (#1b4332), Frischgrün (#27ae60), Gelb-Orange (#f39c12),
           Rot-Orange (#e74c3c), Weiß, Hellgrau
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #6d9a19;
  --green-mid:  #6d9a19;
  --green-light:#e8f2d0;
  --orange:     #ec7d0a;
  --red:        #ec7d0a;
  --yellow:     #f5b800;
  --bg:         #f9faf6;
  --bg-alt:     #eff4e4;
  --white:      #ffffff;
  --text:       #1e2410;
  --text-muted: #556040;
  --radius:     6px;
  --shadow:     0 4px 20px rgba(109,154,25,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: 56px;
}

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--green);
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 1.5rem;
  font-size: 0.8rem;
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.topbar span { display: flex; align-items: center; gap: 0.4rem; }
.topbar i { color: var(--green-mid); font-size: 0.75rem; }
.topbar a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--white); }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--green-mid);
  box-shadow: 0 2px 12px rgba(26,92,46,0.10);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.site-nav { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active { background: var(--green-light); color: var(--green); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.burger span { display: block; height: 2px; background: var(--green); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(26,92,46,0.94) 0%, rgba(39,174,96,0.75) 55%, rgba(26,92,46,0.90) 100%),
    url('Pic/hero-background.jpg') center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 5rem 2rem;
  margin-left: 8%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--yellow); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.2s;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.hero-opening {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
  min-width: 120px;
}
.opening-day { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.opening-time { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.opening-sub { font-size: 0.72rem; color: rgba(255,255,255,0.80); margin-top: 0.3rem; }

/* ── KPI STRIP ───────────────────────────────────────────── */
.kpi-strip {
  background: var(--green);
  display: flex;
  justify-content: center;
}
.kpi {
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.kpi:last-child { border-right: none; }
.kpi-num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--yellow); }
.kpi-label { font-size: 0.74rem; color: rgba(255,255,255,0.55); text-align: center; margin-top: 0.1rem; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 4.5rem 1.5rem; }
.section-light { background: var(--white); }
.section-alt   { background: var(--bg-alt); }
.section-regional { background: var(--green); }

.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}
.section-regional .section-eyebrow { color: var(--yellow); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── ANGEBOTE GRID ───────────────────────────────────────── */
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.angebot-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,92,46,0.08);
  border: 1px solid rgba(26,92,46,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.angebot-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.angebot-card--highlight { border-top: 3px solid var(--orange); }
.angebot-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}
.angebot-img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.angebot-img--obst    { background: #e8f5e9; color: #388e3c; }
.angebot-img--fleisch { background: #fce4ec; color: #c62828; }
.angebot-img--milch   { background: #e3f2fd; color: #1565c0; }
.angebot-img--brot    { background: #fff3e0; color: #e65100; }
.angebot-img--gemuese { background: #f9fbe7; color: #558b2f; }
.angebot-img--kaese   { background: #fff8e1; color: #f57f17; }

.angebot-body { padding: 0.9rem; }
.angebot-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.angebot-herkunft { font-size: 0.74rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.angebot-herkunft i { color: var(--green-mid); margin-right: 0.2rem; }
.angebot-price { display: flex; align-items: baseline; gap: 0.5rem; }
.price-new { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--green); }
.price-old { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; }

/* ── SORTIMENT GRID ──────────────────────────────────────── */
.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.sort-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 0.8rem;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(26,92,46,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.sort-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sort-icon {
  width: 52px;
  height: 52px;
  background: var(--sort-color, var(--bg-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* ── REGIONAL GRID ───────────────────────────────────────── */
.regional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.regional-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: background 0.2s;
}
.regional-card:hover { background: rgba(255,255,255,0.14); }
.regional-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.regional-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.regional-card p { font-size: 0.86rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 0.75rem; }
.regional-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  color: var(--yellow);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

/* ── SERVICE GRID ────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon {
  width: 46px;
  height: 46px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.4rem; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ── KONTAKT ─────────────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.kontakt-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.kontakt-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.kontakt-block h4 { font-size: 0.85rem; font-weight: 700; color: var(--green); margin-bottom: 0.2rem; }
.kontakt-block p, .kontakt-block a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; }
.kontakt-block a:hover { color: var(--green); text-decoration: underline; }

.hours-table { font-size: 0.84rem; border-collapse: collapse; }
.hours-table td { padding: 0.15rem 1.2rem 0.15rem 0; color: var(--text-muted); }
.hours-table td:first-child { font-weight: 600; color: var(--text); }

.kontakt-form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--green); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(26,92,46,0.18);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-mid); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,0.80);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.footer-logo i { font-size: 1.2rem; color: var(--yellow); }
.footer-col p { font-size: 0.84rem; line-height: 1.7; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { font-size: 0.84rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.79rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-links span { color: rgba(255,255,255,0.25); }
.footer-copy { font-size: 0.79rem; color: rgba(255,255,255,0.4); }
.footer-copy a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

/* ── DISCLAIMER ──────────────────────────────────────────── */
.escape-disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(26,92,46,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(39,174,96,0.4);
}
.escape-disclaimer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.escape-disclaimer__inner a { color: var(--green-mid); text-decoration: none; }
.escape-disclaimer__inner a:hover { text-decoration: underline; }

/* ── FADE-IN ─────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 920px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--bg-alt); padding: 1rem 1.5rem; gap: 0.25rem; }
  .site-nav.open { display: flex; }
  .burger { display: flex; }
  .site-header { position: relative; }
  .hero-opening { display: none; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .kpi-strip { flex-wrap: wrap; }
}
@media (max-width: 580px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .topbar-inner { gap: 0.75rem; font-size: 0.76rem; }
}

/* ═══════════════════════════════════════════════════════════
   SUPERMARKT — KATEGORIE-NAV & HERO-PROMO
   ═══════════════════════════════════════════════════════════ */

/* Original-Elemente ausblenden */
.hero      { display: none !important; }
.kpi-strip { display: none !important; }

/* ── KATEGORIE-NAV ────────────────────────────────────────── */
.cat-nav {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 64px;
  z-index: 90;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: stretch;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  color: #444;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s;
}
.cat-item:last-child { border-right: none; }
.cat-item:hover { background: #f9f9f9; color: #1a5c2e; }
.cat-item i { font-size: 1.2rem; }
.cat-item--hl { background: #e67e22; color: #fff !important; }
.cat-item--hl i { color: #fff !important; }
.cat-item--hl:hover { background: #d35400; }

/* ── HERO PROMO ────────────────────────────────────────────── */
.hero-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  overflow: hidden;
}
.hp-left {
  background: #1a5c2e;
  padding: 4.5rem 3rem 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.hp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.2rem;
  width: fit-content;
}
.hp-left h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.1rem;
}
.hp-left h1 em {
  font-style: normal;
  color: #f1c40f;
}
.hp-left p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}
.hp-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hp-right {
  background: #e67e22;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
}
.hp-deal {
  background: #fff;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hp-deal-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #e67e22;
  line-height: 1;
}
.hp-deal-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hp-deal-on {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a5c2e;
}
.hp-stats {
  display: flex;
  gap: 1.5rem;
}
.hp-stat {
  text-align: center;
}
.hp-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hp-stat span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 860px) {
  .hero-promo { grid-template-columns: 1fr; }
  .hp-left { padding: 3rem 2rem; }
  .hp-right { padding: 2.5rem 2rem; flex-direction: row; justify-content: center; }
  .cat-nav { top: 56px; }
}
@media (max-width: 580px) {
  .hp-right { flex-direction: column; gap: 1.5rem; }
  .hp-stats { gap: 1rem; }
  .hp-deal { width: 130px; height: 130px; }
  .hp-deal-pct { font-size: 2.3rem; }
}
