
/* Grundlegende Typografie und Reset */
body {
    font-family: 'Roboto', sans-serif; 
    margin: 0;
    padding: 0;
    color: #444;
    /* ... weitere Stile ... */
}






/* Container für mittige Inhalte */
.container {
    width: 90%; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

/* Header und Navigation */
.main-header {
    background: #00796B; /* Frisches Dunkel-Türkis */
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    margin: 0;
    font-size: 1.6em;
    font-weight: 700;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    display: block;
    transition: background-color 0.3s, border-radius 0.3s;
    font-weight: 500;
}

nav ul li a:hover {
    background-color: #009688; 
    border-radius: 5px;
}

/* Hero Sektion */
.hero {
    background-size: cover; 
    background-position: center; 
    height: 70vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 77, 64, 0.5); 
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 20px;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 800;
    
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Button-Stil */
.button {
    background-color: #29B6F6; /* Akzentfarbe: Helles, klares Blau */
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px; 
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    background-color: #03A9F4;
    transform: translateY(-2px);
}

/* Allgemeine Sektionen */
.section {
    padding: 80px 0; 
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    color: #00796B;
    margin-bottom: 20px;
    font-weight: 700;
}

.colored-section {
    background-color: #F0F4F8; /* Helles, kühles Grau */
}

/* Fact Boxes (Über uns) */
.fact-boxes {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    gap: 30px;
}

.fact-box {
    flex-basis: 30%;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s;
}

.fact-box:hover {
    transform: translateY(-5px);
}

.fact-box h3 {
    color: #29B6F6;
    font-size: 2em;
    margin: 0 0 10px 0;
    font-weight: 700;
}

/* Technologie-Punkte */
.tech-points {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    margin-top: 50px;
    text-align: left;
}

.tech-points > div {
    flex-basis: 50%;
    padding: 0;
}

.tech-points h3 {
    color: #00796B;
    margin-top: 0;
    font-size: 1.8em;
}

.tech-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* History Timeline */
.history-timeline {
    text-align: left;
    max-width: 800px;
    margin: 50px auto;
    border-left: 3px solid #00796B;
    padding-left: 30px;
}

.timeline-event {
    margin-bottom: 30px;
    position: relative;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #29B6F6;
    border: 5px solid #F0F4F8; 
    border-radius: 50%;
}

.timeline-event h4 {
    color: #00796B;
    margin: 0 0 5px 0;
    font-size: 1.3em;
    font-weight: 700;
}

.history-caption {
    font-style: italic;
    font-size: 0.9em;
    margin-top: 15px;
    color: #777;
}

/* Galerie/Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.image-grid img {
    width: 100%;
    height: 220px; 
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.image-grid img:hover {
    transform: scale(1.02);
}

/* Kontakt Formular & Info */
.contact-info {
    text-align: left;
    max-width: 600px;
    margin: 20px auto 40px;
    padding: 30px;
    border: 1px solid #CCC;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: #00796B;
    margin-top: 0;
    font-size: 1.5em;
}

#contact form {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: left;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

#contact button {
    width: 100%; /* Button über die volle Breite */
}

/* Footer */
footer {
    background: #004D40; 
    color: #CFD8DC;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
}

footer a {
    color: #80CBC4; 
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* Responsiveness */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h2 {
        font-size: 2em;
    }
    .fact-boxes, .tech-points {
        flex-direction: column;
    }
    .fact-box, .tech-points > div {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    .image-grid {
        grid-template-columns: 1fr;
    }
}