/* FORASTERA MASTER CSS 2026 - CLEANED & OPTIMIZED 
   Focus: Craft Beer, Tasting, Tap Rental, Organic Kombucha, Services, Community & Trust
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700;900&display=swap');

:root {
    --f-red: #930000;
    --f-black: #000000;
    --f-white: #ffffff;
    --f-grey: #f4f4f4;
    --f-whatsapp: #25D366;
    --f-kombucha: #004d40;
    --f-kombucha-light: #80cbc4;
    --f-font: 'Oswald', sans-serif;
    --f-transition: all 0.3s ease;
}

/* --- BASE RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: Arial, sans-serif; 
    background-color: var(--f-white); 
    color: var(--f-black);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- GLOBAL TYPOGRAPHY --- */
h2, 
.story-section h2, 
.taproom-section h2, 
.team-title-area h2,
.kombucha-intro h2,
.bread-section h2 {
    font-family: var(--f-font) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 30px !important;
    letter-spacing: -1px;
}

/* Specific H2 Adjustments */
.taproom-section h2 { color: var(--f-white) !important; text-align: left; }
.story-section h2 { color: var(--f-black) !important; }
.team-title-area h2 { color: var(--f-black) !important; text-align: center; margin: 0 auto; }
.bread-section h2 { font-size: clamp(2.5rem, 8vw, 4rem) !important; line-height: 0.85 !important; margin-bottom: 5px !important; }

/* --- TOP BAR --- */
.top-bar {
    background: var(--f-black); color: var(--f-white); padding: 12px 0;
    font-family: var(--f-font); font-weight: 400; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 1px;
}
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; }
.top-left-geo { display: flex; gap: 25px; }
.top-right-social { display: flex; align-items: center; gap: 20px; }
.top-social-icons { display: flex; gap: 15px; }
.top-bar a { color: var(--f-white); text-decoration: none; transition: var(--f-transition); }
.top-wa-btn { font-weight: 700; display: flex; align-items: center; gap: 6px; }
.top-wa-btn i { color: var(--f-whatsapp); font-size: 1.2rem; }

/* --- MAIN NAVIGATION --- */
.main-nav {
    background: var(--f-white); height: 90px; position: sticky; top: 0;
    z-index: 1000; border-bottom: 4px solid var(--f-black); display: flex; align-items: center;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-wrap img { height: 60px; display: block; }
.nav-links-wrap { display: flex; justify-content: flex-end; flex: 1; }
.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-link {
    text-decoration: none; color: var(--f-black); font-family: var(--f-font);
    font-weight: 900; font-size: 1.2rem; text-transform: uppercase; padding: 10px 0;
}
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; right: 0; background: var(--f-white);
    border: 3px solid var(--f-black); min-width: 220px; display: none;
    list-style: none; padding: 10px 0; box-shadow: 10px 10px 0px var(--f-black);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { padding: 12px 20px; display: block; color: var(--f-black); text-decoration: none; font-family: var(--f-font); font-weight: 700; border-bottom: 1px solid #eee; }

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1100;
}
.mobile-nav-toggle span {
    display: block; height: 3px; width: 100%; background-color: var(--f-black); border-radius: 3px; transition: all 0.3s ease;
}

.lang-switcher { display: flex !important; gap: 15px !important; margin-left: 20px !important; align-items: center !important; }
.lang-btn {
    font-family: var(--f-font) !important; font-weight: 900 !important; font-size: 1rem !important; color: #000 !important;
    text-decoration: underline !important; text-transform: uppercase !important; transition: 0.2s;
}
.lang-btn:hover, .lang-btn.active { color: var(--f-red) !important; }

/* --- HERO SECTION --- */
.hero { height: 85vh; background: var(--f-black); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-img-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2; }
.hero-inner { 
    position: relative; z-index: 3; width: 100%; color: var(--f-white);
    display: flex; flex-direction: column; align-items: flex-start; text-align: left; padding: 80px 5%;        
}
.sub-title {
    font-family: var(--f-font); font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    color: var(--f-red); margin-bottom: 10px; font-size: 1.2rem; display: block;
}
.hero-inner h1 {
    font-family: var(--f-font); font-weight: 900; font-size: clamp(3.5rem, 10vw, 6rem);
    line-height: 0.85; margin-bottom: 15px; color: #fff !important; text-transform: uppercase; max-width: 900px;
}
.f-sub-headline {
    font-family: var(--f-font); font-weight: 900; font-size: clamp(1.2rem, 4vw, 2.2rem);
    margin-bottom: 20px; color: #fff !important; text-transform: uppercase;
    border-left: 8px solid var(--f-red); padding-left: 20px;
}
.sub-details {
    display: block; font-family: var(--f-font); font-weight: 700; margin-bottom: 25px;
    font-size: 1.2rem; color: #fff !important; text-transform: uppercase; max-width: 500px; line-height: 1.1;
}
.btn-hero {
    display: inline-block; background: #fff; color: #000 !important; padding: 16px 45px;
    font-family: var(--f-font); font-weight: 900; text-decoration: none; font-size: 1.3rem;
    transition: 0.3s ease-in-out; border: 4px solid #fff; text-transform: uppercase;
}
.btn-hero:hover { background: var(--f-red); border-color: var(--f-red); color: #fff !important; transform: translateX(10px); }

/* --- TASTING MODULE --- */
.tasting-section { padding: 100px 0; background: var(--f-grey); }
.tasting-flex { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.tasting-content { flex: 1; min-width: 300px; }
.tasting-content p { font-size: 1.2rem; margin-bottom: 30px; color: #333; }
.price-card { background: var(--f-black); color: var(--f-white); padding: 40px; box-shadow: 15px 15px 0px var(--f-red); flex: 0 0 350px; text-align: center; }
.price-value { font-size: 5rem; font-family: var(--f-font); font-weight: 900; color: var(--f-red); line-height: 1; }
.price-card ul { list-style: none; margin: 25px 0; padding: 0; text-align: left; }
.price-card ul li { padding: 10px 0; border-bottom: 1px solid #333; font-family: var(--f-font); text-transform: uppercase; font-weight: 700; }
.btn-tasting-book { display: block; background: var(--f-red); color: var(--f-white); padding: 15px; text-decoration: none; font-family: var(--f-font); font-weight: 900; text-transform: uppercase; font-size: 1.2rem; transition: 0.3s; }

/* --- BEER GRID --- */
.beer-section { padding: 100px 0; background: var(--f-white); border-top: 4px solid var(--f-black); }
.beer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.beer-card { border: 3px solid var(--f-black); padding: 30px; text-align: center; transition: var(--f-transition); display: flex; flex-direction: column; justify-content: space-between; background: var(--f-white); }
.beer-card:hover { transform: translateY(-10px); box-shadow: 10px 10px 0px var(--f-black); }
.beer-card img { height: 300px; width: auto; object-fit: contain; margin: 20px auto; display: block; }
.beer-card h3 { font-family: var(--f-font); font-weight: 900; text-transform: uppercase; font-size: 1.8rem; margin-top: 10px; }
.beer-type { color: var(--f-red); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 5px; display: block; }
.btn-beer { margin-top: 20px; display: inline-block; padding: 12px 25px; background: var(--f-black); color: var(--f-white); text-decoration: none; font-family: var(--f-font); font-weight: 700; text-transform: uppercase; transition: 0.3s; }
.btn-beer:hover { background: var(--f-red); }
.text-center-wrapper { width: 100%; display: flex; justify-content: center; margin-top: 50px; }
.btn-all-beers { display: inline-block; padding: 15px 40px; background: transparent; color: var(--f-black); border: 3px solid var(--f-black); font-family: var(--f-font); font-weight: 900; text-transform: uppercase; text-decoration: none; transition: 0.3s; }
.btn-all-beers:hover { background: var(--f-black); color: var(--f-white) !important; }

/* --- KOMBUCHA SECTION --- */
.kombucha-feature { padding: 100px 0; background: var(--f-kombucha); color: var(--f-white); overflow: hidden; }
.kombucha-flex { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.kombucha-image { flex: 1; min-width: 300px; text-align: center; position: relative; }
.probiotic-seal { position: absolute; top: -10px; right: 20px; background: var(--f-kombucha-light); color: var(--f-kombucha); padding: 15px; border-radius: 50%; font-family: var(--f-font); font-weight: 900; font-size: 0.8rem; text-transform: uppercase; line-height: 1; transform: rotate(15deg); border: 2px solid var(--f-kombucha); z-index: 5; }
.kombucha-image img { max-width: 450px; width: 100%; height: auto; border-radius: 8px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }
.kombucha-text { flex: 1.2; min-width: 300px; }
.kombucha-text .highlight { color: var(--f-kombucha-light); }
.kombucha-meta { display: flex; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.meta-item { font-family: var(--f-font); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.btn-kombucha { display: inline-block; background: var(--f-kombucha-light); color: var(--f-kombucha); padding: 18px 40px; font-family: var(--f-font); font-weight: 900; text-transform: uppercase; text-decoration: none; transition: 0.3s; }

/* --- SERVICES --- */
.services-section { padding: 120px 0; background: var(--f-white); border-top: 4px solid var(--f-black); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-box { padding: 30px; border: 2px solid var(--f-black); transition: var(--f-transition); }
.service-box:hover { box-shadow: 10px 10px 0px var(--f-black); }
.service-box h3 { font-family: var(--f-font); font-size: 2.2rem; text-transform: uppercase; margin-bottom: 15px; }
.service-list { list-style: none; margin-bottom: 20px; }
.service-list li { margin-bottom: 8px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; display: flex; align-items: center; }
.service-list i { color: var(--f-red); margin-right: 10px; font-size: 1.2rem; }

/* --- TAPROOM & MAP --- */
.taproom-section { padding: 100px 0; background: var(--f-black); color: var(--f-white); }
.taproom-flex { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; }
.taproom-info { flex: 1.2; min-width: 300px; }
.taproom-gallery { display: flex; gap: 20px; margin-top: 30px; width: 100%; }
.gallery-item { flex: 1; height: 200px; overflow: hidden; border: 2px solid #333; border-radius: 4px; transition: var(--f-transition); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: 0.4s ease; }
.gallery-item:hover img { filter: grayscale(0%); transform: scale(1.05); }

.activity-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-family: var(--f-font); }
.activity-table th { color: var(--f-red); font-weight: 900; font-size: 1.2rem; text-transform: uppercase; padding: 15px; border-bottom: 2px solid #333; text-align: left;}
.activity-table td { padding: 15px; border-bottom: 1px solid #333; text-transform: uppercase; color: var(--f-white); vertical-align: middle; }
.time-slot { display: block; font-weight: 900; font-size: 1.1rem; line-height: 1.2; margin-bottom: 5px; }
.time-slot.evening { color: var(--f-white); font-size: 1.1rem; font-weight: 700; }

.map-container { 
    flex: 1; min-width: 300px; height: 500px; border: 3px solid #333; overflow: hidden;
    filter: grayscale(100%) invert(90%) contrast(1.2) brightness(0.9);
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.btn-maps { display: inline-block; padding: 15px 30px; background: var(--f-white); color: var(--f-black) !important; text-decoration: none; font-family: var(--f-font); font-weight: 900; text-transform: uppercase; margin-top: 25px; }

/* --- STORY & TEAM --- */
.story-section { padding: 60px 0; background: var(--f-white); border-top: 4px solid var(--f-black); }
.story-flex { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.video-box-wrap { flex: 0 0 350px; max-width: 100%; }
.video-box img { width: 100%; height: auto; display: block; border-radius: 2px; }
.story-content { flex: 1; min-width: 300px; }

.team-section { padding: 60px 0; background: var(--f-grey); border-top: 4px solid var(--f-black); }
.team-title-area { width: 100%; text-align: center; margin-bottom: 50px; }
.team-title-area::after { content: ''; display: block; width: 60px; height: 4px; background: var(--f-red); margin: 15px auto 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 250px)); gap: 40px; justify-content: center; max-width: 1200px; margin: 0 auto; }
.member { background: transparent; text-align: center; }
.member .pic { width: 100%; height: 220px; overflow: hidden; margin-bottom: 12px; }
.member .pic img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.4s ease; }
.member:hover .pic img { filter: grayscale(0%); transform: scale(1.05); }
.member-info h4 { font-family: var(--f-font); font-weight: 900; font-size: 1.1rem; text-transform: uppercase; margin-bottom: 3px; }
.member-info span { font-family: var(--f-font); font-weight: 700; font-size: 0.8rem; color: var(--f-red); text-transform: uppercase; }

/* --- BREAD SECTION --- */
.section-divider { height: 15px; background: #000; width: 100%; }
.bread-section { padding: 100px 0; background: #fff; color: #000; }
.bread-subtitle { display: block; font-family: var(--f-font); font-weight: 900; font-size: 1.5rem; color: var(--f-red); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 25px; }
.bread-description { font-size: 1.2rem; line-height: 1.5; color: #000; margin-bottom: 30px; max-width: 550px; }

/* --- FOOTER --- */
.main-footer { background: var(--f-black); color: var(--f-white); padding: 80px 0 0 0; border-top: 10px solid var(--f-red); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; padding-bottom: 60px; }
.footer-column h3 { color: var(--f-red); font-size: 1.6rem; margin-bottom: 25px; font-family: var(--f-font); font-weight: 900; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: #ccc; text-decoration: none; font-weight: 700; text-transform: uppercase; font-family: var(--f-font); transition: var(--f-transition); }
.footer-links a:hover { color: var(--f-white); padding-left: 5px; }
.footer-wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff !important; padding: 12px 20px; text-decoration: none; font-family: var(--f-font); font-weight: 900; text-transform: uppercase; margin-top: 15px; transition: var(--f-transition); }
.footer-wa-btn:hover { background: #1da851; transform: translateY(-3px); }
.footer-bottom { background: #0a0a0a; padding: 30px 0; text-align: center; border-top: 1px solid #222; }
.footer-bottom p { font-size: 0.75rem; text-transform: uppercase; color: #555; letter-spacing: 2px; font-weight: 700; }

/* --- MÉM KOMBUCHA PAGE STYLES --- */
.kombucha-detail-section { padding: 100px 0; background: #fff; color: #000; }
.kombucha-intro { max-width: 900px; margin: 0 auto 60px auto; text-align: center; }
.highlight-green { color: var(--f-kombucha); }
.kombucha-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.kombucha-card { border: 3px solid #000; background: #fff; transition: 0.3s ease; height: 100%; position: relative; overflow: hidden; }
.kombucha-card:hover { box-shadow: 12px 12px 0px var(--f-kombucha-light); transform: translate(-5px, -5px); }
.kombucha-card img { display: block; width: 100%; height: 250px; object-fit: cover; border-bottom: 3px solid #000; }
.kombucha-card h3 { font-family: var(--f-font); font-weight: 900; text-transform: uppercase; font-size: 1.8rem; margin: 20px 0 10px 0; padding: 0 20px; }
.kombucha-card p { font-size: 1.05rem; line-height: 1.4; padding: 0 20px 20px 20px; font-weight: 600; }

.faq-container { margin-top: 100px; border-top: 5px solid #000; padding-top: 60px; }
.faq-item { margin-bottom: 30px; }
.faq-item h3 { font-family: var(--f-font); font-weight: 900; text-transform: uppercase; font-size: 1.6rem; color: var(--f-red); margin-bottom: 15px; }
.faq-item p { font-size: 1.2rem; line-height: 1.6; color: #000; font-weight: 500; max-width: 850px; }
.kombucha-list { list-style: none; padding: 0; }
.kombucha-list li { font-family: var(--f-font); font-weight: 900; text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.kombucha-list li::before { content: '→'; color: var(--f-kombucha); font-weight: 900; }

/* --- CONSOLIDATED MEDIA QUERIES --- */
@media (max-width: 1200px) {
    .mobile-nav-toggle { display: flex; }
    .nav-links { display: none; }
}
@media (max-width: 991px) {
    .video-box-wrap { flex: 0 0 100%; max-width: 300px; margin: 0 auto 20px auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .footer-grid { text-align: center; }
    .beer-grid { grid-template-columns: 1fr; }
    .taproom-gallery { flex-direction: column; }
    .kombucha-intro h2 { font-size: 2.8rem; }
    .kombucha-detail-section { padding: 60px 0; }
}

/* Quality Statement Section - Harmonized */
.quality-statement {
    padding: 60px 0;
}

/* Wir nutzen das vorhandene Grid-System deines Themes */
.statement-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.statement-text {
    flex: 1;
    min-width: 300px;
}

/* Hier erzwingen wir den Stil deiner anderen Sektions-Überschriften */
.statement-text h3 {
    margin-bottom: 20px;
    /* Erbt Farbe und Font von deinem Theme h3 */
    text-transform: uppercase; 
}

.statement-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.statement-badge-container {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.hand-made-badge {
    border: 2px solid currentColor; /* Nutzt die Textfarbe des Themes */
    padding: 30px;
    text-align: center;
}

.badge-title { 
    display: block; 
    font-weight: bold;
    font-size: 1.2rem;
}

.hand-made-badge hr { 
    border: 0; 
    border-top: 1px solid currentColor; 
    margin: 15px 0; 
    opacity: 0.3;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .statement-badge-container {
        flex: 1 1 100%;
        margin-top: 20px;
    }
}