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

        * { 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;
        }

/* Basis 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;
}

/* Navigation Basis */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav li {
  display: block;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s;
}

nav a:hover {
  color: var(--link-color, #f5e92f);
  background: rgba(245,233,47,0.1);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 101;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* MOBILE */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .logo-img { height: 36px; }
  
  /* Mobile Navigation */
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  nav ul.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
    
  #nav-menu a {
    color: #ffffff !important;
  }
  
  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 2rem;
    background: transparent;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* DESKTOP Force */
@media (min-width: 769px) {
  #nav-menu {
    display: flex !important;
    position: static !important;
  }
  .mobile-toggle {
    display: none !important;
  }
}

        
        /* Hero */
        .hero {
    min-height: 60vh;  /* ← Garantiert sichtbar! */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url("../img/taproom-alaro.webp") center/cover no-repeat;  /* ← Pfad anpassen */
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

        .hero h1 { font-size: 3rem; margin-bottom: 1rem; }
        .hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
        .cta-btn {
            background: var(--link-color); color: white; padding: 1rem 2rem; 
            text-decoration: none; border-radius: 30px; font-weight: bold;
            display: inline-block; transition: all 0.3s;
        }
        .cta-btn:hover { background: #700000; transform: translateY(-2px); }

        /* Container */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

        /* Sections */
        .section { padding: 4rem 0; }
        .section-title { 
            text-align: center; font-size: 2.5rem; margin-bottom: 1rem; 
            color: var(--text-primary); 
        }
        .section-subtitle { 
            text-align: center; font-size: 1.1rem; color: #666; margin-bottom: 3rem; 
        }

        /* TAPROOM INTRO STYLES */
.taproom-intro {
  background: #faf8f6;
  padding: 4rem 1.5rem;
  text-align: center;
  color: #2b2b2b;
}

.taproom-intro .inner {
  max-width: 900px;
  margin: 0 auto;
}

.taproom-intro h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.taproom-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.taproom-intro em {
  color: #b97c37; /* Gold-/Amber-Ton passend zu Bierfarbtönen */
  font-style: normal;
  font-weight: 600;
}

.taproom-intro strong {
  color: #333;
  font-weight: 600;
}

@media (min-width: 768px) {
  .taproom-intro {
    padding: 6rem 2rem;
  }
  .taproom-intro h2 {
    font-size: 2.3rem;
  }
  .taproom-intro p {
    font-size: 1.1rem;
  }
}
        
        /* Plato de Mediodia */
        .menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        .menu-card {
            background: var(--accent-light); border-radius: 12px; padding: 2rem; 
            box-shadow: 0 5px 15px rgba(0,0,0,0.1); text-align: center;
        }
        .menu-card h3 { font-size: 1.8rem; margin-bottom: 1rem; color: #000000; }
        .menu-price { font-size: 1.5rem; font-weight: bold; color: #000000; margin: 1rem 0; }

        /* Biere am Hahn */
        .beer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
        .beer-item { 
            background: white; border: 2px solid var(--border-color); 
            padding: 1.5rem; border-radius: 8px; text-align: center;
        }
        .beer-name { font-weight: bold; font-size: 1.2rem; margin-bottom: 0.5rem; }
        .beer-style { color: #666; margin-bottom: 1rem; }

        /* NEUES Menü Akkordeon */
        .menu-accordion { max-width: 900px; margin: 3rem auto 0; }
        .menu-category { 
            background: white; margin-bottom: 1.5rem; border-radius: 12px; 
            overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .menu-category-header { 
            width: 100%; padding: 1.8rem 2rem; background: var(--accent-light); 
            border: none; text-align: left; font-size: 1.3rem; font-weight: 700; 
            color: var(--text-primary); cursor: pointer; display: flex; 
            justify-content: space-between; align-items: center;
            transition: all 0.3s;
        }
        .menu-category-header:hover { background: #f0f0f0; }
        .menu-category-content { 
            max-height: 0; overflow: hidden; transition: all 0.4s ease-out; 
            padding: 0 2rem; color: #666; line-height: 1.7;
        }
        .menu-category-content.active { max-height: 2000px; padding: 1.5rem 2rem 2rem; }
        .menu-item { 
        display: flex;
        justify-content: space-between;
        padding: 1rem 0 0.3rem;   /* unten weniger, Linie kommt am Text */
        border-bottom: none;
        }

        .menu-category-content p {
        padding-bottom: 0.8rem;
        margin-bottom: 0.8rem;
        border-bottom: 1px solid #eee;
        }

        .menu-category-content p:last-child {
        border-bottom: none;
        }
        
        .menu-item-name {
        font-weight: 700;   /* oder 600 */
    color: var(--text-primary);
    flex: 1;
}

        /* CTA Section */
        .cta-section { 
            background: var(--header-footer); color: #ffffff; text-align: center; padding: 4rem 2rem;
        }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
        .cta-btn-secondary { background: white; color: var(--link-color); }

        /* Contact */
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
        .contact-info, .contact-form { background: var(--accent-light); padding: 2rem; border-radius: 12px; }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        .form-group input, .form-group textarea, .form-group select { 
            width: 100%; padding: 0.8rem; border: 1px solid var(--border-color); border-radius: 6px; 
        }
        .submit-btn { 
            background: var(--link-color); color: white; padding: 1rem 2rem; 
            border: none; border-radius: 30px; font-weight: bold; width: 100%; cursor: pointer;
        }

        /* FAQ Section - Service Style */
        .faq-section { padding: 5rem 0; background: var(--accent-light); }
        .faq-section .faq-container { max-width: 900px; margin: 3rem auto 0; }
        .faq-item { 
            background: white; margin-bottom: 1.5rem; border-radius: 12px; 
            overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .faq-question { 
            width: 100%; padding: 1.8rem 2rem; background: var(--accent-light); 
            border: none; text-align: left; font-size: 1.1rem; font-weight: 600; 
            color: var(--text-primary); cursor: pointer; display: flex; 
            justify-content: space-between; align-items: center;
            transition: all 0.3s;
        }
        .faq-question:hover { background: #f0f0f0; }
        .faq-answer { 
            max-height: 0; overflow: hidden; transition: all 0.4s ease-out; 
            padding: 0 2rem; color: #666; line-height: 1.7; font-size: 1rem;
        }
        .faq-answer.active { 
            max-height: 400px; padding: 1.5rem 2rem 2rem; 
        }

        /* 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;
}
.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);
}
.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;
}
        .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 {<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/taproom.css">

  background: #700000;
}

        /* Mobile */
        @media (max-width: 768px) {
            .header-block.header-top { font-size: 0.8rem; padding: 0.4rem 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; }
            .hero h1 { font-size: 2rem; }
            .contact-grid { grid-template-columns: 1fr; }
            .cta-buttons { flex-direction: column; }
            .cta-btn, .cta-btn-secondary { width: 100%; }
            .menu-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
        }
.dropdown {
  position