/* ============================================
   Brennerberg Hirschfleisch — Stylesheet
   ============================================ */

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

:root {
  --forest:    #2c4a1e;
  --forest-mid:#3e6b2b;
  --gold:      #b8832a;
  --gold-light:#d4a04a;
  --cream:     #f7f2eb;
  --warm-bg:   #f0ebe0;
  --text:      #1c1c1c;
  --text-mid:  #4a4a4a;
  --text-light:#7a7a7a;
  --white:     #ffffff;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }

p { color: var(--text-mid); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

address { font-style: normal; }

img { max-width: 100%; display: block; }

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

.section { padding: 96px 0; }
.bg-warm { background: var(--warm-bg); }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,131,42,0.35);
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  transition: color var(--transition);
}
.site-header.scrolled .nav-logo { color: var(--forest); }
.nav-logo span { color: var(--gold-light); }
.site-header.scrolled .nav-logo span { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.site-header.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover,
.site-header.scrolled .nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--text); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(26,48,16,0.82) 0%, rgba(44,80,32,0.72) 40%, rgba(61,107,46,0.60) 70%, rgba(90,138,64,0.50) 100%),
    url('https://www.damadama.de/images/hirschfamilie.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* Decorative texture layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(90,138,64,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(44,74,30,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,36,14,0.6) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-top: 72px;
}

.hero-eyebrow {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.hero-scroll span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* --- Über uns --- */
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ueber-image { border-radius: var(--radius); overflow: hidden; }

.ueber-text .section-eyebrow { margin-bottom: 0.4rem; }
.ueber-text h2 { margin-bottom: 1.2rem; }

.facts-row {
  display: flex;
  gap: 40px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0d8cc;
}

.fact strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--forest);
}

.fact span {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Produkte --- */
.produkte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.produkt-card {
  border: 1px solid #e5ddd0;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  background: var(--white);
}
.produkt-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.produkt-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.produkt-card h3 { margin-bottom: 0.6rem; color: var(--forest); font-size: 1rem; }

.produkt-preis {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.produkt-card p { font-size: 0.85rem; color: var(--text-light); }

.produkt-card-featured {
  background: var(--forest);
  border-color: var(--forest);
}
.produkt-card-featured h3 { color: var(--white); }
.produkt-card-featured .produkt-icon { color: var(--gold-light); }
.produkt-card-featured .produkt-preis { color: var(--gold-light); }
.produkt-card-featured p { color: rgba(255,255,255,0.7); }

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.produkte-hinweis {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* --- Qualität --- */
.qualitaet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.qualitaet-card {
  background: var(--warm-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.qualitaet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.qualitaet-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.qualitaet-card h3 {
  margin-bottom: 0.6rem;
  color: var(--forest);
}

/* --- Bestellen --- */
.oz-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.oz-table tr { border-bottom: 1px solid #ede8e0; }
.oz-table tr:last-child { border-bottom: none; }
.oz-table td { padding: 8px 0; color: var(--text-mid); }
.oz-table td:last-child { text-align: right; font-weight: 500; color: var(--text); }

.bestellen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.bestellen-block {
  margin-bottom: 1.8rem;
}

.bestellen-block h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.bestellen-block p,
.bestellen-block address { color: var(--text-mid); font-size: 0.95rem; }

.bestellen-block a { color: var(--forest); font-weight: 500; }
.bestellen-block a:hover { color: var(--gold); }

.bestellen-hinweis-box {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  align-self: center;
}

.bestellen-hinweis-box h3 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.bestellen-hinweis-box ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bestellen-hinweis-box li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  padding-left: 1.2em;
  position: relative;
}

.bestellen-hinweis-box li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

/* --- Anfahrt --- */
.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.anfahrt-block {
  margin-bottom: 1.8rem;
}

.anfahrt-block h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.anfahrt-block p,
.anfahrt-block address { color: var(--text-mid); font-size: 0.95rem; }

.anfahrt-block a { color: var(--forest); font-weight: 500; }
.anfahrt-block a:hover { color: var(--gold); }

.anfahrt-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.anfahrt-map .image-placeholder {
  aspect-ratio: 4/3;
}

/* --- Image Placeholders --- */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  gap: 4px;
}

.image-placeholder small { font-size: 0.75rem; opacity: 0.75; max-width: 200px; }

.image-forest  { background: linear-gradient(135deg, #2c5020 0%, #4a7a34 60%, #3a6228 100%); min-height: 400px; }
.image-deer1   { background: linear-gradient(135deg, #5a4020 0%, #8a6430 50%, #6b4e28 100%); }
.image-deer2   { background: linear-gradient(135deg, #3a5a20 0%, #5a7a30 100%); }
.image-family  { background: linear-gradient(135deg, #2a4060 0%, #4a6080 100%); }
.image-fawn    { background: linear-gradient(135deg, #6a5030 0%, #9a7848 100%); }
.image-autumn  { background: linear-gradient(135deg, #8a4820 0%, #c47030 100%); }
.image-map     { background: linear-gradient(135deg, #c8d8b0 0%, #a8c090 50%, #90b078 100%); color: #3a5020; }

/* --- Footer --- */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-brand .nav-logo { color: var(--white); font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-nav a:hover { color: var(--gold-light); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.footer-legal a:hover { color: var(--gold-light); }

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding: 0 24px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .ueber-grid,
  .anfahrt-grid { grid-template-columns: 1fr; gap: 40px; }

  .produkte-grid { grid-template-columns: repeat(2, 1fr); }
  .qualitaet-grid { grid-template-columns: repeat(2, 1fr); }
  .bestellen-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; padding: 12px 0; border-bottom: 1px solid #eee; }
  .nav-links li:last-child a { border-bottom: none; }

  .nav-toggle { display: flex; }

  .produkte-grid { grid-template-columns: 1fr; }
  .qualitaet-grid { grid-template-columns: 1fr; }

  .facts-row { gap: 24px; flex-wrap: wrap; }

  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
}
