/*
Theme Name:  Angus-Zucht Golsch
Theme URI:   https://example.com
Author:      Angus-Zucht Golsch
Author URI:  https://example.com
Description: Landingpage-Theme für landwirtschaftliche Betriebe. Vollbild-Hero mit Bebas Neue Headline, Open Sans Copy-Text, CTA-Button und rechtlichem Footer.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Angus-Zucht Golsch
Tags:        one-page, full-width-template, agriculture
*/

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

:root {
  --cream:  #F5F0E8;
  --soil:   #3B2B1A;
  --leaf:   #4A6741;
  --wheat:  #C8A96E;
  --wheat-light: #ddc28e;
  --mist:   rgba(28, 18, 8, 0.55);
  --font-headline: 'Bebas Neue', sans-serif;
  --font-body:     'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--soil);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--wheat); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: subtleZoom 18s ease-out forwards;
}

/* Fallback-Farbe wenn kein Bild gesetzt */
.hero__bg:not([style]) {
  background-color: #2a1f10;
}

@keyframes subtleZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--mist);
}

.hero__accent {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--wheat), transparent);
  opacity: 0.65;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
  animation: fadeUp 1.1s cubic-bezier(.22,.68,0,1.2) both;
  animation-delay: 0.25s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.hero__headline {
  font-family: var(--font-headline);
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 400; /* Bebas Neue ist von Natur aus Bold */
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}

.hero__headline em {
  font-style: normal;
  color: var(--wheat);
}

.hero__copy {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.82);
  max-width: 560px;
  margin: 0 auto 2.8rem;
}

.hero__cta {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soil);
  background: var(--wheat);
  padding: 1.05rem 2.6rem;
  border-radius: 2px;
  transition: background 0.22s, transform 0.18s, letter-spacing 0.2s;
}

.hero__cta:hover {
  background: var(--cream);
  transform: translateY(-3px);
  letter-spacing: 0.18em;
  color: var(--soil);
  text-decoration: none;
}

/* ── SCROLL-HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  animation: blink 2.6s ease-in-out infinite;
  pointer-events: none;
}

.scroll-hint__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}

.scroll-hint__arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid var(--cream);
  border-bottom: 1.5px solid var(--cream);
  transform: rotate(45deg);
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.65; }
}

/* ── FOOTER ── */
.site-footer {
  background: #170f06;
  padding: 2.4rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.site-footer__name {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--wheat);
  margin-bottom: 0.5rem;
}

.site-footer__address {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.site-footer__links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.4rem;
  margin-bottom: 1.4rem;
}

.site-footer__links li::after {
  content: '·';
  margin-left: 0.4rem;
  color: rgba(245, 240, 232, 0.2);
}

.site-footer__links li:last-child::after { content: ''; }

.site-footer__links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.18s;
}

.site-footer__links a:hover {
  color: var(--wheat);
}

.site-footer__copy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.22);
}

/* ── CONTENT-SEITEN (Impressum, Datenschutz etc.) ── */
.page-content-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
}

.page-content-wrap h1,
.page-content-wrap h2 {
  font-family: var(--font-headline);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 1rem;
}

.page-content-wrap h1 { font-size: clamp(2.2rem, 6vw, 3.5rem); margin-bottom: 2rem; }
.page-content-wrap h2 { font-size: 1.5rem; margin-top: 2.5rem; }

.page-content-wrap p,
.page-content-wrap li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 1rem;
}

.page-content-wrap a {
  color: var(--wheat);
  text-decoration: underline;
}

/* simple back-link */
.back-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wheat);
  text-decoration: none;
  margin-bottom: 2.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.back-link:hover { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero__accent { display: none; }
  .hero__headline { line-height: 1; }
  .site-footer { padding: 2rem 1.2rem 1.6rem; }
}
