/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff; /* Reinweiß */
    font-family: 'Inter', sans-serif;
    color: #000000;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.menu-wrapper {
    max-width: 600px;
    width: 100%;
    padding: 80px 20px;
}

/* Header */
header {
    margin-bottom: 60px;
    text-align: left;
}

.label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
}

h1 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: -1px;
}

/* Navigations-Liste */
.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-card {
    text-decoration: none;
    color: inherit;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0; /* Sehr feine graue Linie */
    transition: all 0.3s ease;
}

.menu-card:first-child {
    border-top: 1px solid #f0f0f0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h2 {
    font-size: 20px;
    font-weight: 500;
}

.arrow {
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
}

p {
    font-size: 14px;
    color: #777;
    margin-top: 8px;
}

/* Hover-Effekt */
.menu-card:hover {
    padding-left: 10px;
    background-color: #fafafa; /* Minimales Grau beim Drüberfahren */
}

.menu-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
footer {
    margin-top: 60px;
    font-size: 12px;
    color: #ccc;
}

/* Mobile Optimierung */
@media (max-width: 480px) {
    .menu-wrapper {
        padding: 40px 20px;
    }
    h1 {
        font-size: 32px;
    }
}
