/* 
   FORASTERA CRAFT BEER - GLOBAL FAQ STYLES (DE/EN/ES)
   - Hero Image: craft-beer-mallorca-brewery-forastera-alaro.webp
   - Typography: Segoe UI 900 (Tasting/Brewery Style)
   - Logic: Accordion-Ready (Answers hidden by default)
   - Clean Look: No red bars, left-aligned text
*/

/* 1. BASIS & TYPOGRAFIE */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root {
    --forastera-red: #930000;
    --bg-dark: #000000;
    --text-white: #ffffff;
    --text-grey: #cccccc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    background-color: #ffffff;
    color: #000;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* 2. HERO SEKTION (KOMPAKT & BILD-FIX) */
#hero, .beer-hero-full {
    height: 45vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Pfad springt aus css/ raus und geht in img/ rein */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../img/craft-beer-mallorca-brewery-forastera-alaro.webp') center/cover !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    color: var(--text-white);
}

.hero-content h1 {
    font-family: 'Segoe UI', sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: clamp(2.2rem, 6vw, 4rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -2px !important;
}

.hero-content p {
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* 3. FAQ SEKTION (NACH OBEN GEZOGEN) */
.beer-faq, .faq-section {
    padding-top: 0 !important;
    margin-top: -50px !important; 
    position: relative;
    z-index: 100;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    background: #ffffff;
    padding: 30px 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

/* FAQ FRAGEN (KLICKBAR) */
.faq-question {
    font-family: 'Segoe UI', sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: 1.5rem !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
    color: #000 !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    margin: 0;
    border: none !important;
    padding-left: 0 !important;
}

.faq-question:hover {
    color: var(--forastera-red) !important;
}

/* Plus-Zeichen als Indikator */
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--forastera-red);
    transition: transform 0.3s ease;
}

/* FAQ ANTWORTEN (VERSTECKT FÜR AKKORDEON) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    padding-left: 0 !important;
}

/* WENN AKTIV (DURCH JS) */
.faq-answer.active {
    max-height: 600px; /* Genug Platz für lange Antworten */
    padding-top: 15px;
    padding-bottom: 15px;
}

/* 4. FOOTER (4-SPALTEN LAYOUT) */
footer {
    background-color: var(--bg-dark) !important;
    padding: 80px 0 30px 0;
    margin-top: 80px;
    color: var(--text-white);
}

.footer-content {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 240px;
}

.footer-section h3 {
    font-family: 'Segoe UI', sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: var(--forastera-red) !important;
    font-size: 1.8rem !important;
    line-height: 1.0 !important;
    letter-spacing: -1.2px !important;
    margin-bottom: 1.8rem;
}

.footer-section p, 
.footer-section a {
    color: var(--text-grey) !important;
    font-size: 0.95rem;
    font-weight: 600 !important;
    text-decoration: none;
    margin-bottom: 0.7rem;
    display: block;
}

.footer-section a:hover {
    color: var(--text-white) !important;
}

/* WHATSAPP BUTTON */
.whatsapp-footer-btn {
    display: inline-flex !important;
    background-color: #25D366 !important;
    color: #ffffff !important;
    padding: 14px 22px;
    border-radius: 4px;
    font-weight: 900 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    margin-top: 10px;
    text-decoration: none !important;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center !important;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

.footer-bottom p {
    font-weight: 900 !important;
    color: #444 !important;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 5. RESPONSIVE */
@media (max-width: 992px) {
    .faq-container { padding: 30px 1.5rem; }
    .footer-section { min-width: 45%; }
}

@media (max-width: 600px) {
    #hero, .beer-hero-full { height: 35vh !important; }
    .beer-faq, .faq-section { margin-top: -30px !important; }
    .footer-section { min-width: 100%; }
    .faq-question { font-size: 1.3rem !important; }
}