/*
  style.css
  --------------------------------------------------
  Diese Datei dürfen die Schüler verändern.
  Hier geht es um Farben, Abstände, Schriftgrößen und Layout.
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f2f5f8;
    color: #222;
}

.kopfbereich {
    background: #1e88e5;
    color: white;
    text-align: center;
    padding: 30px 15px;
}

.kopfbereich h1 {
    margin: 0;
    font-size: 32px;
}

.kopfbereich p {
    margin: 8px 0 0 0;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 25px auto;
    padding: 0 15px;
}

.station-box,
.hinweis-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.station-box h2 {
    margin-top: 0;
}

.zeit {
    color: #666;
}

.werte-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.wertkarte {
    background: #eaf4ff;
    border: 1px solid #cfe6ff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.wertkarte h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.wert {
    font-size: 28px;
    font-weight: bold;
}

.fussbereich {
    text-align: center;
    color: #777;
    padding: 20px;
}

/* Tablet */
@media (max-width: 800px) {
    .werte-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Handy */
@media (max-width: 500px) {
    .werte-grid {
        grid-template-columns: 1fr;
    }

    .kopfbereich h1 {
        font-size: 26px;
    }
}
