:root {
    --primary-color: #272826;
    --accent-color: #e30613;
    --secondary-color: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section (for index.html and index-en.html) */
.hero-section {
    background: linear-gradient(135deg, #dedede 0%, #272826 100%);
    color: white;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-container {
    margin-bottom: 40px;
}

.header .logo-container {
    margin-bottom: 0;
}

.logo-container img {
    max-width: 400px;
    height: auto;
}

.main-content {
    padding: 60px 0;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
    border-top: 4px solid var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 1.5rem;
}
.contact-item.svg-primary svg{fill:var(--accent-color);margin-right:1rem;}



.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-color);
}
.contact-card .section-title{display:flex;align-items:center;justify-content:start;}
.contact-card .section-title svg{margin-right:1rem;}
.battery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}

.battery-icon svg {
    max-width: 100%;
    height: auto;
}

.footer {
    background-color: #272826;
    color: #fff;
    padding: 30px 0;
    margin-top: 60px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent-color);
}

.status-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #c10510;
    border-color: #c10510;
}

/* Language Switcher (for hero section) */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 10;
}

.language-switcher a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgba(39, 40, 38, 0.8);
    transition: all 0.3s;
}

.language-switcher a:hover {
    color: #fff;
    background-color: rgba(227, 6, 19, 0.9);
}

.language-switcher a.active {
    color: #fff;
    background-color: var(--accent-color);
}

.language-switcher span {
    color: #fff;
}

/* Header (for impressum/datenschutz pages) */
.header {
    background: linear-gradient(135deg, #dedede 0%, #ffffff 100%);
    padding: 20px 0;
    border-bottom: 3px solid var(--accent-color);
}

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

.header .logo-container img {
    max-height: 60px;
    width: auto;
}

.header .home-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .home-link a {
    color: #272826;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.header .home-link a:hover {
    color: var(--accent-color);
}

.header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* Language Switcher (for header) */
.header .language-switcher {
    position: static;
    display: flex;
    gap: 10px;
    align-items: center;
}

.header .language-switcher a {
    color: #272826;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: transparent;
    transition: all 0.3s;
}

.header .language-switcher a:hover,
.header .language-switcher a.active {
    color: var(--accent-color);
    background-color: rgba(227, 6, 19, 0.1);
}

.header .language-switcher span {
    color: #272826;
}

/* Content Pages */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.content-section h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.content-section p {
    margin-bottom: 15px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .logo-container img {
        max-width: 250px;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .language-switcher a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 25px;
    }


    .header {
        padding: 12px 0;
    }
    
    .header .logo-container {
        display: flex;
        align-items: center;
        margin-bottom:0;
    }
    
    .header .logo-container img {
        max-height: 35px;
        width: auto;
    }
    
    .header .header-right {
        gap: 8px;
        justify-content: flex-end;
    }
    
    .header .language-switcher {
        gap: 5px;
    }
    
    .header .language-switcher a {
        padding: 3px 6px;
        font-size: 0.85rem;
    }
    
    .header .home-link a {
        font-size: 1.1rem;
    }
    
    .main-content {
        padding: 40px 0;
    }
}



