:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --bg: #0f172a;
    --card: #1e293b;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --accent: #22c55e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 48px;
}

a {
    text-decoration: none;
    color: var(--muted);
    transition: 0.2s;
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--muted);
    transition: 0.2s;
}

a:hover{
  color: var(--text);
}
nav a:hover {
    color: var(--text);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero img {
    width: 100%;
    border-radius: 12px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.button {
    display: inline-block;
    background: var(--primary);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.2s;
}

.button:hover {
    background: var(--primary-dark);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 12px;
}

.card h3 {
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--muted);
}

/* Mascot section */
.mascot {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.mascot img {
    width: 160px;
}

/* Footer */
footer {
    margin-top: 4rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 800px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav a {
        margin: 0 0.5rem;
    }

    .mascot {
        flex-direction: column;
        text-align: center;
    }
}


/* Wrapper statt body */
.cards-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

/* Grid-Container statt .container */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Karte selbst (unverändert übernommen) */
.card {
    display: block;
    background-color: #545458;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover wie vorher */
.card-int:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Bild */
.card img {
    height: 50px;
    margin: 5px 0 10px 0;
}

/* Titel */
.card h2 {
    font-size: 1.1rem;
    margin: 0;
}

/* ===== Responsive Verhalten (übernommen) ===== */

/* große Screens */
@media (min-width: 2000px) {
    .cards {
        grid-template-columns: repeat(4, 1fr);
    }
    .cards-wrapper {

    }
}

/* Tablets */
@media (max-width: 1200px) {
    .cards {
        grid-template-columns: 1fr;
    }
    .cards-wrapper {
        
        
        margin-top: 0;
    }
}

/* kleine Geräte */
@media (max-width: 750px) {
    .cards {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 15px;
    }
    .cards-wrapper {

    }
}
