/* ==========================================================================
   6. KONTAKT & IMPRESSUM
   ========================================================================== 
*/
.page-content-inner form, 
.page-content-inner hr, 
.page-content-inner .legal-text {
    margin-left: 25px;
    margin-right: 25px;
}

.page-content-inner p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-content-inner hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 30px 25px;
}

.contact-form { display: flex; flex-direction: column; max-width: 600px; }
.contact-form input, .contact-form textarea {
    padding: 10px; background: #333; border: 1px solid #555; color: white; margin-bottom: 10px;
}

/* --- LINKS IM TEXT --- */
.news-text a, 
.page-content-inner a {
    color: #ff5e4d;           /* Ein helleres, leuchtendes Rot für besseren Kontrast */
    text-decoration: none;    /* Unterstreichung weg für einen moderneren Look */
    font-weight: bold;        /* Etwas kräftiger, damit man den Link sofort erkennt */
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 94, 77, 0.3); /* Dezente Linie statt dicker Unterstreichung */
}

.news-text a:hover, 
.page-content-inner a:hover {
    color: #ffffff;           /* Wird beim Drüberfahren weiß */
    border-bottom: 1px solid #ffffff; 
    background-color: rgba(255, 94, 77, 0.1); /* Hauchzarter Hintergrund-Effekt */
}

.hp-container {
    position: absolute;
    left: -5000px; /* Schiebt das Feld weit aus dem Sichtfeld */
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================================
   7. VIEWER & MISC
   ========================================================================== 
*/
.viewer {
    display: none;
    position: fixed; z-index: 1000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.9);
    justify-content: center; align-items: center;
}
.viewer-content { max-width: 90%; max-height: 90%; border: 3px solid white; }
.close { position: absolute; top: 20px; right: 35px; color: white; font-size: 40px; cursor: pointer; }
