/* ============================================================
   HARDTWALDBATTERIE – FAQ Page Specific Styles
   Styles unique to faq.html
   ============================================================ */


/* === Disclaimer Banner === */
.disclaimer-banner {
    background: linear-gradient(90deg,
        rgba(201, 162, 39, 0.1) 0%,
        rgba(201, 162, 39, 0.2) 50%,
        rgba(201, 162, 39, 0.1) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    padding: 2rem 3rem;
    text-align: center;
}

.disclaimer-banner p {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-banner strong {
    color: var(--accent-gold);
}

.disclaimer-banner .emoji {
    font-size: 1.3rem;
    margin: 0 0.5rem;
}


/* === FAQ Categories === */
.faq-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.category-icon {
    font-size: 1.8rem;
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}


/* === FAQ Accordion === */
.faq-item {
    margin-bottom: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
}

.faq-item.active {
    border-color: rgba(201, 162, 39, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(201, 162, 39, 0.05);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--accent-gold);
    color: var(--bg-void);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: var(--text-light);
}

.faq-answer-content em {
    color: var(--accent-gold);
    font-style: italic;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    transition: border-color 0.3s ease;
}

.faq-answer-content a:hover {
    border-color: var(--accent-gold);
}


/* === TL;DR Section === */
.tldr-section {
    background: var(--bg-deep);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.tldr-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.tldr-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tldr-item {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.tldr-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tldr-text {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.tldr-subtext {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}


/* === Still Questions Section === */
.still-questions {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--gradient-ritual);
}

.still-questions h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.still-questions p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
