/* Grundlegende Stile */
:root {
    --primary-blue: #0066a1;
    --primary-red: #e30613;
    --primary-yellow: #ffcc00;
    --secondary-blue: #009ee0;
    --light-blue: #e6f4f9;
    --dark-blue: #004a7c;
    --text-dark: #333333;
    --text-light: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--dark-blue);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-margin-top {
    margin-top: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
}

/* Header */


header {
    background: linear-gradient(rgba(0, 102, 161, 0.9), rgba(0, 102, 161, 0.9)), 
    url('/bkv/image/erstuermung-rat.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}



.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    background-color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-yellow);
}

.logo-text p {
    font-size: 1rem;
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    font-weight: bold;
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

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

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-yellow);
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hauptinhalt */
main {
    padding: 80px 0;
}

/* Über uns */
.about {
    background-color: white;
    padding: 60px 0;
    border-radius: 10px;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(rgba(188, 222, 243, 0.7), rgba(195, 219, 233, 0.7)), 
    url('/bkv/image/erstuermung-rat.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-content {
    text-align: center;
    color: rgb(250, 247, 247);
    padding: 20px;
}

.about-image-content i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-image-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Veranstaltungen */
.events {
    margin-bottom: 60px;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-date {
    background-color: var(--primary-red);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.event-date .day {
    font-size: 2rem;
    display: block;
}

.event-date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
}


.event-date .jahr {
    font-size: 1.2rem;
  display: block;
}

.event-info {
    padding: 20px;
}

.event-info h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.event-info p {
    margin-bottom: 15px;
}

.event-info i {
    margin-right: 8px;
    color: var(--primary-blue);
}

/* Galerie */
.gallery {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 161, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover:after {
    opacity: 1;
}

/* Mitglied werden */
.membership {
    background-color: var(--light-blue);
    padding: 60px 0;
    border-radius: 10px;
    margin-bottom: 60px;
}

.membership-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.membership-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.membership-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.benefit {
    text-align: center;
    max-width: 200px;
}

.benefit i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.benefit h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

/* Kontakt */
.contact {
    background-color: white;
    padding: 60px 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 30px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-links i {
    margin-right: 10px;
    width: 20px;
}

.footer-link {
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .membership-benefits {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        padding: 20px;
        z-index: 100;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-top {
        margin-bottom: 20px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .event-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .membership-benefits {
        flex-direction: column;
        align-items: center;
    }

}
.menue img {object-fit: contain !important;}
 
a.menue, a.menue:link, a.menue:visited, a.menue:active {
position: relative;
text-decoration: none;
}
 
a.menue:hover {
z-index:1000;
background: transparent;
}
 
a.menue span {
display: none;
text-decoration: none;
}
 
a.menue:hover span {
z-index:3000;
display:inline-block !important;
position: absolute;
left: 0px;
padding: 0px;
}
 
 