/* ============================= */
/*   Grundlayout                 */
/* ============================= */

body {
    margin: 40px;
    font-family: Arial, Helvetica, sans-serif;
    background: #cccccc url("bg002.jpg");
    color: #222;
}

h1 {
    margin-bottom: 30px;
    font-weight: 600;
}

/* ============================= */
/*   Links                       */
/* ============================= */

a {
    color: #1a4f8b;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
    color: #163e6d;
}

/* ============================= */
/*   Grid Layout                 */
/* ============================= */

.sitemap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 800px) {
    .sitemap {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/*   Card Design                 */
/* ============================= */

.card {
    /* leichtes blau */
    background: linear-gradient(135deg, #f5f7fa, #e4ecf5);
    /* leichtes grün */
    /* background: linear-gradient(135deg, #eef6f0, #d9e8dd); */
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ============================= */
/*   Card Headings + Icons       */
/* ============================= */

.card h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h2 i {
    color: #3a6ea5;
    font-size: 1.1em;
}

/* ============================= */
/*   Listen                      */
/* ============================= */

ul {
    padding-left: 20px;
    margin: 0;
}

li {
    margin-bottom: 6px;
}
