/* Zusätzliche benutzerdefinierte Styles für Wurm-Rur Antifa */

/* Hero Section Background */
.hero {
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    background-color: transparent !important;
}

.hero .display-4,
.hero .lead {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Navigation Hover Effects */
.navbar-nav .nav-link:hover {
    color: #ff0000 !important;
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Button Hover */
.btn-danger:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        background-attachment: scroll;
    }

    .display-4 {
        font-size: 2rem;
    }
}