/* style_herbst.css - Herbstliches Bernstein-Kupfer-Design (480px) */

body {
    background: linear-gradient(135deg, #7c2d12, #b45309, #78350f); /* Herbstlicher Bernstein-Kupfer-Verlauf */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    /* Integrierter digitaler Kopierschutz */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Schutz gegen Ausdrucken */
@media print {
    body { display: none !important; }
}

/* Hauptrahmen auf exakt 480 Pixel begrenzt */
.outer-frame {
    width: 480px;
    background: linear-gradient(180deg, #d97706, #78350f); /* Kupfer-Rahmen */
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    box-sizing: border-box;
    border: 2px solid #f59e0b;
}

/* Die Abschnitte (Widgets) */
.widget {
    background-color: #0f172a; /* Tiefes Kontrollraum-Blau-Schwarz für harten Kontrast */
    color: #cbd5e1; /* Hellgraue Schrift */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #78350f;
}

.lang-label {
    font-family: monospace;
    font-size: 11px;
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
    border-bottom: 1px solid #78350f;
    padding-bottom: 2px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #b45309;
}

.nav-btn {
    background-color: #b45309;
    color: #ffffff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.nav-btn:hover {
    background-color: #d97706;
}

h2 {
    font-size: 13px;
    margin: 5px 0 10px 0;
    color: #ffffff;
    border-left: 3px solid #d97706;
    padding-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    font-size: 12px;
    text-align: justify;
    margin: 5px 0;
    line-height: 1.4;
}

/* Tabellen-Stile für spätere SSTV / Italien Updates */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    margin-top: 8px;
    color: #cbd5e1;
}

th, td {
    border: 1px solid #78350f;
    padding: 5px;
    text-align: left;
}

th {
    background-color: #1e293b;
    color: #ffffff;
}

/* Eingabefelder und Auswahllisten */
input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #78350f;
    background-color: #020617;
    color: #ffffff;
    font-size: 12px;
    box-sizing: border-box;
}

/* Bild-Widgets */
.image-widget {
    background-color: #000000;
    border: 1px dashed #b45309;
    color: #d97706;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-family: monospace;
    margin: 15px auto;
    text-align: center;
    border-radius: 4px;
}

.img-parkbank { width: 400px; height: 180px; }
.caption { font-size: 10px; color: #94a3b8; font-family: sans-serif; margin-top: 4px; font-style: italic; }
.img-round { width: 80px; height: 80px; border-radius: 50%; margin: 10px auto; }

.footer-box {
    font-size: 10px;
    text-align: center;
    color: #ffffff;
    margin-top: 15px;
    border-top: 1px solid #b45309;
    padding-top: 10px;
    font-weight: bold;
}

a {
    color: #d97706;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}
