/* CSS für aedinoima eG Website */

/* Reset und Grundlegendes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header und Navigation */
header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #4a9eff;
    border-bottom-color: #4a9eff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subtitle {
    font-size: 20px;
    color: #b0b0b0;
    font-weight: 300;
}

/* Page Header */
.page-header {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header .subtitle {
    font-size: 18px;
    color: #666;
}

/* Content Sections */
.content {
    padding: 60px 0;
}

.contrairon-box {
    background-color: #f9f9f9;
    border-left: 4px solid #4a9eff;
    padding: 30px;
    margin-bottom: 50px;
}

.contrairon-box h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contrairon-box p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.contrairon-box p strong {
    color: #000;
}

.value-proposition,
.mission,
.text-content {
    margin-bottom: 50px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

footer p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

footer a {
    color: #4a9eff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .contrairon-box {
        padding: 20px;
    }
    
    .contrairon-box h2 {
        font-size: 22px;
    }
    
    .contrairon-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    p {
        font-size: 16px;
    }
}
