/* ═══════════════════════════════════════════════════════════════
   FOXOGRAPHICS – Shared Stylesheet
   Farben, Typo, Nav, Footer, Basis-Komponenten
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --black:      #0a0a0a;
  --dark:       #111111;
  --dark-card:  #181818;
  --border:     rgba(255,255,255,0.08);
  --text:       #e8e4de;
  --text-muted: #888880;
  --gold:       #c9a96e;
  --gold-light: #e0c48a;
  --white:      #f5f2ee;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 44px; width: auto;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1px; background: var(--text-muted);
  transition: all 0.3s;
}
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif); font-size: 2rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.8rem; cursor: pointer;
}

/* ─── SECTION BASE ─── */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 1.2rem;
}
.section-sub { color: var(--text-muted); max-width: 520px; line-height: 1.8; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; padding: 0.85rem 2.2rem;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: all 0.25s;
  cursor: pointer; border: none; font-family: var(--font-sans);
}
.btn-primary {
  background: var(--gold); color: var(--black); font-weight: 500;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  border: 1px solid rgba(245,242,238,0.5); color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── GOLD DIVIDER ─── */
.gold-line {
  width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0 2rem;
}

/* ─── BADGE ─── */
.badge {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--text-muted);
  padding: 0.4rem 0.9rem; border-radius: 2px; display: inline-block;
}

/* ─── BLOG KARTEN ─── */
.blog-card {
  background: var(--dark-card); border: 1px solid var(--border);
  overflow: hidden; transition: border-color 0.3s, transform 0.3s;
  text-decoration: none; display: block; color: inherit;
}
.blog-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-3px); }
.blog-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.blog-thumb-placeholder {
  width: 100%; aspect-ratio: 16/9; display: block;
}
.blog-body { padding: 1.6rem; }
.blog-tag {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem; display: block;
}
.blog-title {
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--white);
  line-height: 1.35; margin-bottom: 0.6rem;
}
.blog-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.blog-date { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.8rem; display: block; }
.blog-read {
  display: inline-block; margin-top: 1rem;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.blog-read:hover { border-color: var(--gold); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.85rem; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* Gradient-Platzhalter */
.bg-forest   { background: linear-gradient(135deg, #1a2a1a 0%, #2d3d2d 100%); }
.bg-coast    { background: linear-gradient(135deg, #0d1f2d 0%, #1a3a4a 100%); }
.bg-wildlife { background: linear-gradient(135deg, #2a1a10 0%, #3d2820 100%); }
.bg-astro    { background: linear-gradient(135deg, #0a0a1a 0%, #141428 100%); }
.bg-arch     { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); }
.bg-nature   { background: linear-gradient(135deg, #0d1a0d 0%, #1a2a1a 100%); }
.bg-society  { background: linear-gradient(135deg, #1a1018 0%, #2a1a28 100%); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  section { padding: 5rem 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .container { padding: 0 1.5rem; }
}
