/*
 * Impressum - Page-spezifische Styles
 *
 * Basis-Styles (Hero, Fonts, Responsive) kommen aus hybrid-pages.css.
 * Hier nur Impressum-spezifische Formatierung.
 *
 * Strategie: #primary bleibt full-width (Astra page-builder Modus).
 * Zentrierung ueber den inneren .impressum-content Wrapper,
 * der von Astra nicht angefasst wird.
 *
 * @package Natur-Luftballons
 * @since 1.0
 */

/* ===================================================================
   CONTENT-WRAPPER (Zentrierung)
   #primary bleibt full-width (Astra page-builder).
   .impressum-content uebernimmt max-width + Zentrierung.
   =================================================================== */

.impressum-content {
    font-family: "Nunito", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}


/* ===================================================================
   SEKTIONEN
   =================================================================== */

.impressum-section {
    margin-bottom: 2rem;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

.impressum-section h2 {
    font-family: "Nunito", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-top: 0;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #62BC66;
}

.impressum-section p {
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #374151;
    line-height: 1.8;
    margin: 0;
}


/* ===================================================================
   LINKS
   =================================================================== */

.impressum-content a {
    color: #62BC66;
    text-decoration: none;
    transition: color 0.2s ease;
}

.impressum-content a:hover {
    color: #4a9a4e;
    text-decoration: underline;
}


/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 768px) {
    .impressum-content {
        padding: 1.5rem 1rem;
    }

    .impressum-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .impressum-content {
        padding: 1rem 0.75rem;
    }

    .impressum-section h2 {
        font-size: 1.2rem;
    }
}
