:root {
  --bg-primary: #ffffff;
  --text-primary: #000000;
  --header-footer: #000000;
  --link-color: #930000;
  --accent-light: #f5f5f5;
  --border-color: #e0e0e0;
  --accent-punk: #f5e92f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
}

/* Header Top Block */
.header-block.header-top {
  background-color: var(--header-footer);
  color: white;
  font-size: 0.9rem;
  padding: 0.5rem 2rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.header-block.header-top a {
  color: var(--link-color);
  text-decoration: underline;
  transition: color 0.3s;
}
.header-block.header-top a:hover { color: #bf0000; }

/* Header */
header {
  background: #ffffff;
  color: #000000;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
.logo-img {
  display: block;
  height: 48px;
  width: auto;
}
@media (max-width: 768px) {
  .logo-img { height: 36px; }
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
nav a {
  color: #000000;
  text-decoration: none;
}
nav a:hover { color: var(--link-color); }

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: #930000;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  margin-left: auto;
  z-index: 101;
}
.mobile-toggle::before {
  content: '☰';
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block !important;
  }
  
  nav ul {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000000 !important;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    margin: 0;
    z-index: 100;
  }
  
  nav ul.active {
    display: flex !important;
  }
  
  nav ul li {
    margin: 0.3rem 0;
    width: 100%;
    text-align: center;
  }
  
  nav ul li a {
    color: #ffffff !important;
    font-size: 1.15rem;
    padding: 1rem 1.5rem;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #f5e92f !important;
    background: rgba(147,0,0,0.3);
  }
}

/* VOLLBILD HERO - mediterran & punkig */
.beer-hero-full {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.5rem;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.hero-text {
  max-width: 520px;
  text-align: right;
  color: #fff;
}
.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.hero-text h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  transform: translateY(-3px);
}
.hero-tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 0.8rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.hero-badge {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent-punk);
  background: rgba(0,0,0,0.65);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}
.btn-primary {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.8rem 2.4rem;
  border-radius: 999px;
  background: var(--accent-punk);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}
.btn-primary:hover { background: #d6cc15; }

@media (max-width: 768px) {
  .beer-hero-full { min-height: 520px; }
  .hero-inner { justify-content: center; }
  .hero-text { text-align: center; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-tagline { font-size: 1rem; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--header-footer);
    flex-direction: column;
    padding: 1rem;
  }
  nav ul.active { display: flex; }
  .mobile-toggle { display: block; }
}

/* Sections */
.beer-intro,
.beer-specs,
.beer-story,
.beer-pairing,
.beer-gallery,
.beer-related,
.beer-order {
  padding: 3.5rem 1.5rem;
}
.beer-intro,
.beer-story {
  background: #faf8f2;
}
.beer-specs,
.beer-pairing,
.beer-gallery,
.beer-related,
.beer-order {
  background: #ffffff;
}
.beer-intro .inner,
.beer-specs .inner,
.beer-story .inner,
.beer-pairing .inner,
.beer-gallery .inner,
.beer-related .inner,
.beer-order .inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Intro 2-Spalten */
.beer-intro .inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 2rem;
  align-items: center;
}
.beer-intro h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }
.beer-intro p { font-size: 1.05rem; line-height: 1.7; }
.beer-glass-image img {
  width: 100%;
  height: 400px;      
  object-fit: cover;    
  border-radius: 6px;
}
@media (max-width: 768px) {
  .beer-intro .inner { grid-template-columns: 1fr; }
}

/* Specs */
.beer-specs {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 3.5rem 1.5rem;
}
.beer-specs .inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.beer-specs-column {
}
.beer-specs h3 {
  font-size: 1.6rem;
  margin-bottom: 1.0rem;
  color: var(--text-primary);
}
.beer-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.beer-spec-list li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.beer-spec-list strong {
  font-weight: 600;
  margin-right: 0.5rem;
  color: #111;
}
@media (max-width: 768px) {
  .beer-specs .inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Story & Pairing */
.beer-story h3,
.beer-pairing h3,
.beer-gallery h3,
.beer-related h3,
.beer-order h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.beer-story p,
.beer-pairing p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Gallery */
.beer-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 1.5rem !important;
}
.gallery-card img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Cross-Selling - PERFEKT FIX */
.beer-related {
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  margin-top: 2rem;
}

.beer-related .inner {
  max-width: 1100px;  /* ← Breiter für 4er Grid */
  margin: 0 auto;
}

.beer-related h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-primary);
}

.beer-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));  /* ← 4 auf Desktop! */
  gap: 1.2rem;
  justify-items: center;
  max-width: 950px;  /* ← Passt 4x220px */
  margin: 0 auto;
}

.beer-related-item {
  background: #faf8f6;
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
  width: 220px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.beer-related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.beer-related-item img {
  width: 100%;
  height: 260px;
  max-width: 240px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  flex-shrink: 0;
  margin: 0 auto 0.4rem auto;
  display: block;
}

.beer-related-item h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  font-weight: 600;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beer-related-item p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  flex-grow: 1;
}

.beer-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--link-color);
  border-radius: 18px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.beer-link:hover {
  background: var(--link-color);
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .beer-related-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 768px) {
  .beer-related-grid {
    grid-template-columns: 1fr;
  }
  .beer-related-item {
    width: 100%;
    max-width: 340px;
    min-height: 380px;
  }
  .beer-related-item img {
    height: 240px;
  }
}

/* Order-Section */
.beer-order {
  text-align: center;
}
.beer-order p { font-size: 1rem; margin-bottom: 1.4rem; }

/* Footer */
footer {
  background: var(--header-footer);
  color: #ffffff;
  padding: 3rem 0 1rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--link-color);
}
.footer-section p {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.footer-section a {
  color: #ffffff;
  text-decoration: none;
}
.footer-section a:hover { color: var(--link-color); }
.social-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}
.social-links a:hover { color: var(--link-color); }
.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.footer-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
.footer-newsletter-form button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 20px;
  background: var(--link-color);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.footer-newsletter-form button:hover { background: #700000; }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  font-size: 0.85rem;
}
