/* ==========================================================================
   Travel DE Design Perfection Tweaks (2026)
   Scope: de/reisen.html and de/tutorial/*.html
   Goal: Unified alignment, centering, and spacing without global overrides.
   ========================================================================== */

/* 1. Unified Widths for Centered Content */
.travel-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* 2. Section Headers */
.travel-section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.travel-section-header h2 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.travel-section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 3. Hero Alignment Tweaks */
.travel-hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* 4. Button Groups Centering */
.travel-cta-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* 5. Card Grids visual balance */
/* Enforces consistent padding and alignment for tutorial cards */
.travel-grid-balance {
    display: grid;
    gap: 2rem;
}

/* Mobile optimizations for grids */
@media (max-width: 768px) {
    .travel-grid-balance {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .travel-section-header {
        margin-bottom: 2rem;
    }

    .travel-narrow {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* 6. FAQ Wrapper */
.travel-faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.travel-faq-wrap details {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.travel-faq-wrap summary {
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    position: relative;
    padding-right: 2rem;
}

/* Custom indicator for summary if needed, reusing existing if present, 
   otherwise rely on simple styling */

/* 7. Footer/CTA Bottom Spacing */
.travel-cta-final {
    padding: 6rem 0;
}