/* Allgemeine Stile */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Top Bar */
.bg-dark {
    background-color: #1a1a1a !important;
}

/* Navbar Anpassungen */
.navbar-brand {
    font-weight: bold;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}



.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.hero-text {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    background: rgba(0, 102, 204, 0.3);
    padding: 10px;
}

.hero-text h1 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-text .lead {
    font-size: 1.4rem;
    font-weight: 500;
}

/* Karten-Styling */
.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: none;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    border-bottom: none;
    padding: 1rem;
}

/* Match Cards */
.match-card {
    text-align: center;
    padding: 1rem;
}

.match-result {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* News Cards */
.news-card {
    border-left: 4px solid var(--primary-color);
}

.news-card .card-title {
    color: var(--primary-color);
}

/* Date Box */
.date-box {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    text-align: center;
    min-width: 60px;
}

.date-box .day {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.date-box .month {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Footer */
footer {
    background-color: #1a1a1a;
}

.bg-darker {
    background-color: #111;
}

/* Vereinsfarben */
:root {
    --primary-color: #0066cc; /* Blau */
    --secondary-color: #ffcc00; /* Gelb */
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Hover-Effekte */
.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Button-Styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }

    .hero-section {
        height: 40vh;
    }
}

/* Sponsoren */
.sponsor-img {
    max-height: 80px;
    object-fit: contain;
}

.sponsor-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.sponsor-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.sponsor-container:hover .sponsor-name {
    opacity: 1;
}

/* Suchformular */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.25);
}

/* Dropdown-Menüs */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
} 