:root {
    --lg-blue: #0056a3; /* Beispielblau für LG Züri+ */
    --lg-red: #e30613;  /* Akzentfarbe für das Plus */
    --light-grey: #f4f4f4;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-text { font-weight: bold; font-size: 1.5rem; }
.logo-text span { color: var(--lg-red); }

nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 20px; }
nav a { text-decoration: none; color: #333; font-weight: 500; }

.nav-highlight {
    background: var(--lg-red);
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
}

/* SVM Hero Bereich */
.svm-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('stadion-bild.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--lg-red);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover { transform: scale(1.05); }

/* Logo Sektion */
.partner-section {
    padding: 50px 5%;
    background: var(--light-grey);
    text-align: center;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.partner-logo {
    text-decoration: none;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.partner-logo img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover img { filter: grayscale(0%); }
.partner-logo span { margin-top: 10px; font-size: 0.9rem; }

.logo-container {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 50px; /* Hier kannst du die Höhe anpassen, damit es zum Menü passt */
    width: auto;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.main-logo:hover {
    transform: scale(1.02); /* Minimaler Effekt beim Drüberfahren */
}

/* Anpassung für mobile Geräte */
@media (max-width: 600px) {
    .main-logo {
        height: 40px; /* Etwas kleiner auf dem Handy */
    }
}
