:root {
    --bg: #ffffff;
    --text: #000000;
    --accent: #ff3e00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Wir bauen einen eigenen Cursor */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    z-index: 100;
    mix-blend-mode: difference;
    color: white;
}

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 15vw;
    line-height: 0.8;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.subtitle {
    margin-top: 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.content-section {
    padding: 10rem 5%;
}

.dark {
    background: #000;
    color: #fff;
}

.section-header h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 4rem;
}

.video-card {
    background: #f0f0f0;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.video-card img, .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.video-card:hover img, .video-card:hover video {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.learning-list .item {
    font-size: 3rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #444;
    transition: 0.3s;
}

.item-link {
    text-decoration: none; /* Entfernt den Unterstrich */
    color: inherit;        /* Übernimmt die Farbe vom Text (Schwarz oder Weiß) */
    display: block;        /* Sorgt dafür, dass die ganze Zeile klickbar ist */
}

.learning-list .item:hover {
    padding-left: 2rem;
    color: var(--accent);
}

/* ... dein bisheriges CSS ... */

.item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.item-link:hover .item {
    padding-left: 3rem;
    color: var(--accent);
}

/* Bento-Grid Optimierung für Bilder */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

footer {
    padding: 5rem;
    text-align: center;
    font-size: 0.8rem;
}
