@charset "utf-8";
/* CSS Document */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

/* Header und Navigation */
.header {
    background-color: #9b2525;
    color: white;
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #666;
}

.nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav li {
    margin: 0 20px;
}

.nav a {
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav a:hover {
    border-bottom-color: white;
}

.hamburger {
    display: none;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
    font-size: 20px;
}

/* Hero-Slider */
.slider-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-1 {
    background-image: url('../img/team/VM_Header_Start_2000px_01_2023.jpg');
}

.slide-2 {
    background-image: url('../img/team/VM_Header_Gabi_2000px_01_2023.jpg');
}

.slide-3 {
    background-image: url('../img/team/VM_Header_Markus_2000px_01_2023.jpg');
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-control.active {
    background-color: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Logo und Slogan */
.logo-section {
    text-align: center;
    padding: 40px 0;
    background-color: #f8f8f8;
}

.logo {
    max-width: 400px;
    margin: 0 auto 20px;
}

.slogan {
    font-size: 18px;
    color: #808080;
    margin-bottom: 20px;
}

.separator {
    width: 100px;
    height: 2px;
    background-color: #ccc;
    margin: 20px auto;
}

.main-heading {
    font-size: 32px;
    color: #333;
    font-weight: bold;
    margin: 30px 0;
    line-height: 1.3;
}

.baustelle  {
    font-size: 28px;
    color: #84AC35;
    font-weight: normal;
    margin: 120px 0;
    line-height: 1.3;
}


.cta-button {
    display: inline-block;
    background-color: #9b2525;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    margin: 20px 0 30px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #801a1a;
}

.contact-info {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.contact-info a {
    color: #9b2525;
}

/* Features */
.features {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 300px;
    margin: 0 20px;
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 40px;
    color: #9b2525;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #f0f0f0;
    padding: 40px 0 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 15px;
}

.footer-contact {
    line-height: 1.8;
    color: #666;
}

.footer-contact a {
    color: #9b2525;
}

.opening-hours {
    line-height: 1.8;
    color: #666;
}

.copyright-section {
    background-color: #9b2525;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    margin-top: 40px;
}

.copyright-section a {
    color: white;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #9b2525;
        padding: 20px;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        margin: 10px 0;
    }

    .features-grid,
    .footer-grid {
        flex-direction: column;
    }

    .feature,
    .footer-column {
        margin: 20px 0;
    }

    .slider-container {
        height: 300px;
    }

    .slider-arrow {
        padding: 10px;
        font-size: 14px;
    }
}

