@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --amber: #c8760a;
  --amber-light: #e8941a;
  --dark: #1a1108;
  --wood: #2e1d0e;
  --cream: #f5ead6;
  --cream-dark: #e8d5b0;
  --text: #2c1a05;
  --muted: #7a5c3a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  background: var(--wood);
  border-bottom: 3px solid var(--amber);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1100px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 900;
  color: var(--amber-light);
  text-decoration: none;
  letter-spacing: 1px;
  padding: 1rem 0;
}
.logo span { color: var(--cream); }
nav ul { list-style: none; display: flex; gap: 0.5rem; }
nav a {
  color: var(--cream-dark);
  text-decoration: none;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
nav a:hover, nav a.active {
  color: var(--amber-light);
  background: rgba(200,118,10,0.15);
}

/* ── HERO (index only) ── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex; align-items: flex-end;
  background: url('../beerHintergrund.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,2,0.92) 0%, rgba(20,10,2,0.3) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 3rem 2.5rem;
  max-width: 1100px; margin: auto; width: 100%;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--amber-light);
}
.hero-content p {
  color: var(--cream-dark);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  opacity: 0.85;
  font-style: italic;
}

/* ── BLOG GRID ── */
.blog-section {
  background: var(--cream);
  padding: 3.5rem 1.5rem;
}
.section-inner { max-width: 1100px; margin: auto; }
.section-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--wood);
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 0.75rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 2rem;
}

/* Card */
.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,15,0,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid #e0ccaa;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(30,15,0,0.2);
}
.card-img {
  width: 100%; height: 210px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-img-placeholder {
  width: 100%; height: 210px;
  background: linear-gradient(135deg, #c8a86e 0%, #e8d5a0 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-meta {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wood);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.card-rating {
  margin-top: 1rem;
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ── INNER PAGE HEADER ── */
.page-header {
  background: var(--wood);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--amber);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  font-weight: 900;
}
.page-header p {
  color: var(--amber-light);
  font-style: italic;
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ── CONTENT PAGES ── */
.content-section {
  background: var(--cream);
  padding: 3.5rem 1.5rem;
  min-height: calc(100vh - 250px);
}

/* Über Mich */
.about-grid {
  max-width: 900px; margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.about-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(135deg, #c8a86e, #8b5e2a);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: 4px solid var(--amber);
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--wood);
  margin-bottom: 1rem;
}
.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.stat-row {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--cream-dark);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--amber);
  display: block;
}
.stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* Kontakt */
.contact-wrap {
  max-width: 640px; margin: auto;
}
.contact-intro {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: 0.98rem;
}
form {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 2.5rem;
  border: 1px solid #e0ccaa;
  box-shadow: 0 4px 20px rgba(30,15,0,0.1);
}
.field { margin-bottom: 1.5rem; }
label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd0b8;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--amber); background: #fff; }
textarea { resize: vertical; min-height: 130px; }
.btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--amber-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 3px solid var(--amber);
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 1px;
}
footer a { color: var(--amber); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-avatar { max-width: 180px; }
  form { padding: 1.5rem; }
  .nav-inner { flex-direction: column; gap: 0.5rem; padding: 0.75rem 1rem; }
}