/* ===============================================
   BWA e.V. - Modern Website Styles
   =============================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-blue: #003366;
    --primary-blue-dark: #002244;
    --primary-blue-light: #004488;
    --accent-yellow: #cccc66;
    --accent-yellow-light: #e6e699;
    --accent-gold: #9D9D51;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6a6a6a;
    
    --bg-white: #ffffff;
    --bg-gray-light: #f8f9fa;
    --bg-gray: #e9ecef;
    
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
    --border-radius: 12px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===============================================
   Base Styles
   =============================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================================
   Typography
   =============================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 2rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
}

/* ===============================================
   Header
   =============================================== */

.header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--primary-blue);
    color: white;
    padding: 10px 0;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    transition: opacity var(--transition-fast);
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item i {
    font-size: 0.85rem;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background: white;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: var(--text-primary);
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-menu li a i {
    font-size: 0.9rem;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-blue);
    background: var(--bg-gray-light) !important;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-blue);
}


.btn-primary-nav:hover {
    background: var(--primary-blue-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ===============================================
   Hero Slider
   =============================================== */

.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--primary-blue);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.6) 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    color: white;
    animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.95;
    color: white !important;    
}

.slide-text p {
    color: white;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    z-index: 10;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid white;
}

.slider-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ===============================================
   Main Content
   =============================================== */

.main-content {
    padding: 60px 0;
    background: var(--bg-gray-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

/* Primary Content */
.content-primary {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.section-title {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(1.75rem, 4vw, 2.2rem);
}

.featured-image {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.img-fluid {
    width: 100%;
    height: auto;
}


/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-gray-light);
    border-radius: var(--border-radius);
}

.info-card {
    display: flex;
    flex-direction: column;
}

.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-logo {
    width: 100%;
    max-width: 200px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    color: var(--primary-blue);
    margin-top: 5px;
    flex-shrink: 0;
}

.info-item p {
    margin: 0;
}

.info-item strong {
    color: var(--primary-blue);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    box-shadow: var(--shadow-md);
}

.highlight-box p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--accent-yellow-light) !important;
}

.highlight-box .text-link {
    color: var(--accent-yellow-light);
    text-decoration: underline;
    font-weight: 600;
}

.highlight-box .text-link:hover {
    color: white;
}

/* Contact Info Box */
.contact-info-box {
    background: white;
    border: 2px solid var(--border-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.contact-info-box p {
    margin: 0;
}

/* ===============================================
   Christmas/Holiday Greeting Box
   =============================================== */
.holiday-greeting-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 3px solid var(--accent-gold);
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(157, 157, 81, 0.15);
    position: relative;
    overflow: hidden;
}

.holiday-greeting-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 157, 81, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.holiday-greeting-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.holiday-greeting-image {
    width: 100%;
}

.holiday-greeting-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.holiday-greeting-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    line-height: 1.3;
}

.holiday-greeting-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

/* Responsive für Holiday Greeting Box */
@media (max-width: 768px) {
    .holiday-greeting-box {
        padding: 30px 20px;
    }
    
    .holiday-greeting-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .holiday-greeting-image {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .holiday-greeting-text h2 {
        font-size: 1.5rem;
    }
    
    .holiday-greeting-text p {
        font-size: 1rem;
        text-align: left;
    }
}

.text-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.text-link:hover {
    color: var(--primary-blue-light);
    text-decoration: underline;
}

/* Membership CTA */
.membership-cta {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-gray-light);
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.membership-cta h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

/* ===============================================
   Buttons
   =============================================== */


.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.btn-link:hover {
    background: var(--primary-blue);
    color: white;
}

/* ===============================================
   Sidebar
   =============================================== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-yellow);
}

/* Quicklinks */
.quicklinks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quicklink-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-primary);
    background: var(--bg-gray-light);
    border-radius: 8px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.quicklink-item i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.quicklink-item:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.quicklink-item:hover i {
    color: white;
}

/* Partner Banner */
.partner-banner {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.partner-banner:hover {
    transform: scale(1.02);
}

/* Widget Images */
.widget-image {
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.widget-image:last-child {
    margin-bottom: 0;
}

/* Update Info */
.update-info {
    background: var(--bg-gray-light);
}

.update-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.update-text i {
    color: var(--primary-blue);
}

/* ===============================================
   Footer
   =============================================== */

/* ===============================================
   Footer
   =============================================== */

.footer {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 0;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: var(--accent-yellow) !important;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-link:hover {
    color: var(--accent-yellow);
}

.footer-link i {
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    transform: translateX(4px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.1rem;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--primary-blue-dark);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-content p {
    margin: 0;
}

.footer-bottom-content a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-bottom-content a:hover {
    color: var(--accent-yellow);
}
/* ===============================================
   Responsive Design
   =============================================== */

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-card {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        justify-content: center;
        width: 100%;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .content-primary {
        padding: 25px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 60px;
        height: 60px;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content {
        text-align: center;
    }
    
    .content-primary {
        padding: 20px 15px;
    }
    
    .sidebar-widget {
        padding: 20px 15px;
    }
}

/* ===============================================
   Utilities
   =============================================== */

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ===============================================
   Contact Form Button Styling
   =============================================== */





/* ===============================================
   VEREINHEITLICHTE BUTTONS & LINKS
   Einheitliches Design für alle interaktiven Elemente
   =============================================== */

/* ===============================================
   COLOR PALETTE
   =============================================== */
:root {
    --btn-bg: #f8f9fa;           /* Helles Grau */
    --btn-text: #003366;         /* Blau */
    --btn-hover-bg: #e9ecef;     /* Dunkleres Grau */
    --btn-hover-text: #002244;   /* Dunkleres Blau */
    --btn-border: #dee2e6;       /* Border-Grau */
}

/* ===============================================
   BUTTONS - Einheitlicher Stil
   =============================================== */

/* Standard Button */
.btn-primary,
.btn-secondary,
.btn-link,
.btn-default,
button[type="submit"],
button[type="button"],

.btn-primary:hover,
.btn-secondary:hover,
.btn-link:hover,
.btn-default:hover,
button[type="submit"]:hover,
button[type="button"]:hover,
.cta-button:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-primary:active,
.btn-secondary:active,
.btn-link:active,
.btn-default:active,
button[type="submit"]:active,
button[type="button"]:active,
.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Navigation Button */

.btn-primary-nav:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-text);
    text-decoration: none;
}

/* Kontaktformular Button */




/* ===============================================
   LINKS - Einheitlicher Stil
   =============================================== */

/* Standard Links im Content */


td.link {
    color: var(--btn-text);
    font-weight: 400;
}





/* ===============================================
   RESPONSIVE
   =============================================== */

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-link,
    .btn-default,
    button[type="submit"],
    button[type="button"],
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 10px 20px;
    }
    
    #buttons138 button {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===============================================
   PRINT
   =============================================== */

@media print {
    .btn-primary,
    .btn-secondary,
    .btn-link,
    .btn-default,
    button,
    .cta-button {
        display: none;
    }
    
    .link,
    a.link {
        color: #000 !important;
        text-decoration: none !important;
        border-bottom: none !important;
    }
}

.contract_old {
    width: 100% !important;
    max-width: 100%;
}

/* ===============================================
   Breadcrumb Navigation
   =============================================== */

.breadcrumb-section {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #6c757d;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #003366;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: #dee2e6;
    font-weight: 300;
}

.breadcrumb-item.active {
    color: #003366;
    font-weight: 500;
}

.breadcrumb-item i {
    font-size: 0.85rem;
}
/* ===============================================
   Page Header (Schmale Version mit Logo)
   =============================================== */

.page-header-simple {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 34, 68, 0.95) 100%),
                url('https://www.bwa-ev.de/bilder/1128292490/1128292490-1766315868-bwa-ev-3x.png');
    background-size: cover, contain;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    padding: 40px 0;
    margin-bottom: 30px;
    position: relative;
}

.page-header-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.bwa-ev.de/bilder/1128292490/1128292490-1766315868-bwa-ev-3x.png');
    background-size: auto 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title-simple {
    color: #fff !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    font-family: 'Outfit', 'Open Sans Condensed', sans-serif !important;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 10px 0;
    }
    
    .breadcrumb-item span {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .page-header-simple {
        padding: 30px 0;
    }
    
    .page-header-simple::before {
        background-size: auto 50%;
    }
    
    .page-title-simple {
        font-size: 1.5rem !important;
    }
}

/* ===============================================
   Standard Text-Klassen (aus default.css)
   Modernisiert für bessere Lesbarkeit
   =============================================== */

body {
    font-family: 'Inter', 'Open Sans Condensed', sans-serif !important;
    font-size: 1rem !important;
    font-weight: normal !important;
    color: #003366 !important;
    line-height: 1.6;
}

p {
    margin: 0 0 1rem 0;
    border: 0;
    line-height: 1.6 !important;
    color: #003366 !important;
    font-family: 'Inter', 'Open Sans Condensed', sans-serif !important;
    font-size: 1rem !important;
}

/* ===============================================
   Erweiterte Klassen für besseres Layout
   =============================================== */

/* Bild-Klassen */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Listen */
ul {
    margin: 15px 0;
    padding-left: 20px;
}

li {
    font-family: 'Inter', 'Open Sans Condensed', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1rem !important;
    margin: 8px 0;
}

.list {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}
/* ===============================================
   Footer
   =============================================== */

.footer {
    background: var(--primary-blue);
    color: white;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

    color: var(--accent-yellow);
}


/* ===============================================
   Kontaktformular-Klassen
   =============================================== */

.contactform h1 {
    color: #9D9D51 !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
}

.contactform p {
    line-height: 1.6 !important;
    color: #003366 !important;
    font-family: 'Inter', 'Open Sans Condensed', sans-serif !important;
    font-size: 1rem !important;
}

/* ===============================================
   Button-Klassen
   =============================================== */


.btn-pdf:hover {
    background-color: #003366;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.btn-link:hover {
    background-color: #003366;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Bootstrap Button Override */

.btn-default:hover {
    background-color: #a1a1a1;
    border-color: #002244;
    color: #cccccc;
    transform: translateY(-2px);
}

.btn-default a {
    color: #002244 !important;
    text-decoration: none;
}

/* ===============================================
   Tabellen
   =============================================== */

table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

table td,
table th {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
}

table th {
    background-color: #003366;
    color: #fff;
    font-weight: 600;
}

table tr:nth-child(even) {
    background-color: #f8f9fa;
}

table tr:hover {
    background-color: #e9ecef;
}

.kontakt .tabelle td {
    padding: 8px 10px !important;
}

/* ===============================================
   Content-spezifische Anpassungen
   =============================================== */

.content {
    width: 100%;
    padding: 20px 0;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.content p {
    margin-bottom: 1rem;
}

.content ul,
.content ol {
    margin: 15px 0 15px 25px;
}

.content li {
    margin: 8px 0;
}

/* Textausrichtung */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ===============================================
   Responsive Anpassungen
   =============================================== */

@media (max-width: 768px) {
    body {
        font-size: 0.95rem !important;
    }
    
    h1 {
        font-size: 1.6rem !important;
    }
    
    h2 {
        font-size: 1.4rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    .ueberschrift {
        font-size: 1.3rem !important;
    }
    
    .ueberschrift2 {
        font-size: 1.2rem !important;
    }
    
    .ueberschrift3 {
        font-size: 1.4rem !important;
    }
    
    .btn-pdf,
    .btn-link {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    table td,
    table th {
        padding: 8px 10px;
    }
}

/* ===============================================
   Utility-Klassen
   =============================================== */

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }

/* ===============================================
   Print Styles
   =============================================== */

@media print {
    .header,
    .footer,
    .sidebar,
    .hero-slider,
    .btn-pdf,
    .btn-link {
        display: none;
    }
    
    .content-primary {
        width: 100%;
        padding: 0;
    }
    
    a {
        color: #000 !important;
        text-decoration: none !important;
    }
}
/* ===============================================
   VEREINHEITLICHTE BUTTONS & LINKS
   Einheitliches Design für alle interaktiven Elemente
   =============================================== */

/* ===============================================
   COLOR PALETTE
   =============================================== */
:root {
    --btn-bg: #f8f9fa;           /* Helles Grau */
    --btn-text: #003366;         /* Blau */
    --btn-hover-bg: #e9ecef;     /* Dunkleres Grau */
    --btn-hover-text: #002244;   /* Dunkleres Blau */
    --btn-border: #dee2e6;       /* Border-Grau */
}

/* ===============================================
   BUTTONS - Einheitlicher Stil
   =============================================== */

/* Standard Button */
.btn-primary,
.btn-secondary,
.btn-link,
.btn-default,
button[type="submit"],
button[type="button"],
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-border);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-link:hover,
.btn-default:hover,
button[type="submit"]:hover,
button[type="button"]:hover,
.cta-button:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-primary:active,
.btn-secondary:active,
.btn-link:active,
.btn-default:active,
button[type="submit"]:active,
button[type="button"]:active,
.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Navigation Button */
.btn-primary-nav {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-border);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-nav:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-text);
    text-decoration: none;
}

/* Kontaktformular Button */
#buttons138 {
    text-align: center;
    margin: 30px 0 20px 0;
}

#buttons138 button {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-border);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

#buttons138 button:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-text);
    border-color: var(--btn-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#buttons138 button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===============================================
   LINKS - Einheitlicher Stil
   =============================================== */

/* Standard Links im Content */


td.link {
    color: var(--btn-text);
    font-weight: 400;
}


/* Footer Links */
    color: var(--btn-hover-text);
    text-decoration: none;
    transform: translateX(4px);
}

/* ===============================================
   RESPONSIVE
   =============================================== */

@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-link,
    .btn-default,
    button[type="submit"],
    button[type="button"],
    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 10px 20px;
    }
    
    #buttons138 button {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===============================================
   PRINT
   =============================================== */

@media print {
    .btn-primary,
    .btn-secondary,
    .btn-link,
    .btn-default,
    button,
    .cta-button {
        display: none;
    }
    
    .link,
    a.link {
        color: #000 !important;
        text-decoration: none !important;
        border-bottom: none !important;
    }
}

/* ===============================================
   Vorstand Cards
   =============================================== */

/* Vorstand Grid Layout */
.vorstand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Ehrenmitglieder Grid (max 2 Spalten) */
.vorstand-grid-ehrenmitglieder {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 800px;
}

/* Vorstand Card */
.vorstand-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vorstand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Vorsitzender - besondere Hervorhebung */
.vorstand-vorsitzender {
    border: 2px solid var(--accent-yellow);
}

/* Card Header (ersetzt Canvas) */
.vorstand-card-header {
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    position: relative;
}

/* Ehrenmitglieder - andere Farbe */
.vorstand-card-header-ehren {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #7d7d41 100%);
}

/* Avatar */
.vorstand-avatar {
    margin-top: -50px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.vorstand-avatar img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Card Content */
.vorstand-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vorstand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.vorstand-position {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Ehrenmitglieder Position - Goldene Farbe */
.vorstand-card-ehrenmitglied .vorstand-position {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Button in Vorstand Cards */
.vorstand-content .btn-primary {
    margin-top: 15px;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.vorstand-content .btn-primary i {
    margin-right: 8px;
}

/* Ehrenmitglieder Section */
.ehrenmitglieder-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid var(--accent-gold);
}

.ehrenmitglieder-section h2 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* ===============================================
   Responsive
   =============================================== */

@media (max-width: 768px) {
    .vorstand-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vorstand-card-header {
        height: 60px;
    }
    
    .vorstand-avatar {
        margin-top: -40px;
    }
    
    .vorstand-avatar img {
        width: 100px;
        height: 120px;
    }
    
    .vorstand-name {
        font-size: 1.2rem;
    }
    
    .vorstand-content .btn-primary {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .vorstand-content {
        padding: 15px;
    }
    
    .vorstand-avatar img {
        width: 90px;
        height: 110px;
    }
}


/* ===============================================
   Geschäftsstelle
   =============================================== */

/* Subtitle unterhalb h1 */
.geschaeftsstelle-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

/* 2-Spalten Grid für Geschäftsstelle */
.geschaeftsstelle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

/* Geschäftsführer Card - nutzt vorhandene .vorstand-card Styles */
.geschaeftsfuhrer-card {
    max-width: 400px;
    margin: 0 auto;
}

/* Info Box Container */
.geschaeftsstelle-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Info Box Styling */
.info-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Info Box Title */
.info-box-title {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 20px 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box-title i {
    font-size: 1.5rem;
}

/* Info Box Content */
.info-box-content {
    padding: 30px 25px;
}

/* Info Items */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item > i {
    font-size: 1.3rem;
    color: var(--primary-blue);
    width: 25px;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.info-text p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
}

.info-text a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* ===============================================
   Responsive
   =============================================== */

@media (max-width: 768px) {
    .geschaeftsstelle-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .geschaeftsfuhrer-card {
        max-width: none;
    }
    
    .info-box {
        max-width: none;
    }
    
    .info-box-title {
        font-size: 1.2rem;
        padding: 18px 20px;
    }
    
    .info-box-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .geschaeftsstelle-subtitle {
        font-size: 1rem;
    }
    
    .info-item {
        gap: 12px;
    }
    
    .info-item > i {
        font-size: 1.1rem;
    }
}
/* ===============================================
   Formulare - Verbessert
   =============================================== */

/* Formular-Container */
form {
    max-width: 600px;
    margin: 0 auto;
}

/* Tabellen in Formularen */
form table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

form table td {
    padding: 8px;
}

/* Formular-Titel */
.titel {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    padding: 20px 0 !important;
    margin-bottom: 20px !important;
}

/* Text-Labels in Formularen */
form .text {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--primary-blue) !important;
    padding: 10px 0 !important;
}

/* Input-Felder */
input.login,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    min-width: 300px;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    font-family: 'Inter', sans-serif !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 8px !important;
    background: white !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

/* Spezielle Größen für Login-Felder */
input.login {
    min-width: 350px;
}

/* Textarea größer */
textarea {
    min-height: 150px !important;
    resize: vertical !important;
    line-height: 1.5 !important;
}

/* Input Focus */
input.login:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1) !important;
}

/* Submit-Button (.auswahl) */
input.auswahl,
input[type="submit"],
button[type="submit"] {
    min-width: 200px !important;
    padding: 14px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif !important;
    background-color: var(--primary-blue) !important;
    color: white !important;
    border: 2px solid var(--primary-blue) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
}

input.auswahl:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color: var(--primary-blue-dark) !important;
    border-color: var(--primary-blue-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3) !important;
}

input.auswahl:active,
input[type="submit"]:active,
button[type="submit"]:active {
    transform: translateY(0) !important;
}

/* Login-Form spezifisch */
form[name="zcontent"] {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
}

form[name="zcontent"] table {
    margin: 0 auto;
}

/* Placeholder-Styling */
input::placeholder,
textarea::placeholder {
    color: #999 !important;
    font-style: italic;
}

/* Disabled State */
input:disabled,
textarea:disabled,
button:disabled {
    background-color: #f5f5f5 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

/* Error State */
input.error,
textarea.error {
    border-color: #dc3545 !important;
}

input.error:focus,
textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Success State */
input.success,
textarea.success {
    border-color: #28a745 !important;
}

/* Form Groups für moderne Formulare */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Required Indicator */
.required::after {
    content: " *";
    color: #dc3545;
}

/* ===============================================
   Responsive
   =============================================== */

@media (max-width: 768px) {
    form {
        max-width: 100%;
        padding: 0 15px;
    }
    
    form[name="zcontent"] {
        padding: 25px 20px;
    }
    
    input.login,
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="tel"] {
        min-width: 100%;
        font-size: 16px !important; /* Verhindert Zoom auf iOS */
    }
    
    .titel {
        font-size: 1.3rem !important;
    }
    
    input.auswahl,
    input[type="submit"],
    button[type="submit"] {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    form table td {
        display: block;
        width: 100%;
        text-align: left !important;
        padding: 5px 0;
    }
    
    form .text {
        padding: 5px 0 !important;
    }
    
    input.login {
        min-width: 100%;
    }
}
