/* --- GRUNDEINSTELLUNGEN & NEUE SCHRIFTARTEN --- */
body {
    font-family: 'Lato', Arial, sans-serif; /* Neue Schriftart für Fließtext */
    background-color: #2a3333;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth; /* Sorgt für sanftes Scrollen bei Klick auf Ankerlinks */
}

/* --- VERBESSERTER HERO-HEADER --- */
header {
    background-color: #1e7c73;
    padding: 40px 20px; /* Mehr vertikaler Platz */
    display: flex;
    flex-direction: column; /* Alles untereinander zentrieren */
    align-items: center;
    gap: 15px;
    text-align: center;
}
header img {
    max-width: 140px; /* Logo etwas größer */
    max-height: 140px;
}
.header-title h1 {
    font-family: 'Montserrat', sans-serif; /* Neue Schriftart für Titel */
    margin: 0;
    color: #ffffff;
    font-size: 4em; /* Größerer Titel für mehr Wirkung */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2); /* Subtiler Textschatten */
}
.header-title p {
    margin: 5px 0 0;
    font-size: 1.3em;
    color: #ecf0f1;
    font-weight: 300; /* Leichterer Schriftschnitt */
}

/* --- NAVIGATION MIT HOVER-EFFEKT --- */
nav {
    background-color: #2c3e50;
    padding: 15px; /* Etwas mehr Platz */
    text-align: center;
    position: sticky; /* Hält die Navi beim Scrollen am oberen Rand */
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); /* Schatten für die "klebende" Navi */
}
nav a {
    color: #ecf0f1;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Sanfter Übergang */
}
nav a:hover {
    background-color: #157b73;
    color: #ffffff;
}
nav i {
    margin-right: 8px; /* Kleiner Abstand zwischen Icon und Text */
}

/* --- ALLGEMEINE SEKTIONEN --- */
section {
    padding: 40px 20px; /* Mehr Abstand zwischen den Sektionen */
    max-width: 1200px;
    margin: 0 auto;
}
section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
}

/* --- NEU: Stile für Icons in Überschriften --- */
h2, h3 {
    display: flex;
    align-items: center;
    justify-content: center; /* Zentriert Icon und Text zusammen */
}
h2 > i, h3 > i {
    margin-right: 12px; /* Abstand zwischen Icon und Text */
    font-size: 0.9em; /* Macht das Icon minimal kleiner als den Text */
}
/* --- Ende der neuen Stile --- */


/* --- AUFGEWERTETE KARTEN (Channels, Tools, ISOs) --- */
.channel-section, .tool-item, .iso-item {
    background-color: #34495e;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten für Tiefe */
    border: 1px solid #4a637d; /* Dezenter Rand */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Sanfter Übergang für Hover */
}
.channel-section:hover, .tool-item:hover, .iso-item:hover {
    transform: translateY(-5px); /* Karte hebt sich beim Hovern an */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Stärkerer Schatten beim Hovern */
}

.channels, .tools-container, .isos-container {
    display: flex;
    justify-content: center; /* Zentriert die Items, falls Platz ist */
    gap: 25px;
    flex-wrap: wrap; /* Erlaubt Umbruch bei Bedarf */
}
.channel-section {
    flex: 1;
    min-width: 300px; /* Verhindert, dass die Karten zu schmal werden */
}
.tools-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 300px;
}
.iso-item {
    flex: 1;
    min-width: 300px;
}

.tool-item img, .iso-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* --- VERBESSERTE BUTTONS --- */
.tool-item a, .iso-item a, .donate a {
    display: inline-block;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Sanfter Übergang */
}
.tool-item a, .iso-item a {
    background-color: #27ae60;
}
.tool-item a:hover, .iso-item a:hover, .donate a:hover {
    background-color: #157b73;
    transform: scale(1.05); /* Button wird beim Hovern leicht größer */
}

.donate {
    text-align: center;
    margin: 30px 0;
}
.donate a {
    background-color: #3498db;
    font-size: 18px;
}

footer {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    border-top: 2px solid #1e7c73; /* Kleiner Akzent oben */
}

/* --- RESPONSIVE ANPASSUNGEN --- */
@media (max-width: 768px) {
    .header-title h1 {
        font-size: 2.5em;
    }
    nav {
        position: static; /* Auf Mobilgeräten klebt die Navi nicht */
    }
    nav a {
        display: block;
        margin: 10px 0;
    }
    .channels, .tools-container, .isos-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-title h1 {
        font-size: 2em;
    }
    .header-title p {
        font-size: 1em;
    }
}