.home-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.home-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 21%;
    color: white;
    z-index: 2;
    transform: translateY(-7%);
    margin-bottom: 50px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.home-hero-title {
    font-size: 2.1rem;
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.5);
}

.home-hero-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.5);
}

.home-hero-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.65rem 1.4rem;
    font-size: 1rem;
    border-radius: 7px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    text-decoration: none;
}

.home-hero-button:hover {
    background-color: #8a1c1e;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.home-discount-banner {
    background-color: var(--secondary-color);
    color: #eee;
    padding: 7px 11vw;
    text-align: left;
    font-size: 1rem;
}

.home-about {
    padding: 40px 34vw 50px 11vw;
}

.home-about h2{
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.home-space-bottom {
    margin-bottom: 1rem;
}

.home-about p {
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}

/* Position des Selectors auf der Home-Seite */
body .selector {
    position: absolute;
    right: 8vw;
    top: calc(50vh + 240px);
    z-index: 10;
}

.home-sustainable {
    position: relative;
    background-image: url('/images/car.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 60px 20vw 30px;
    color: white;
}

.home-sustainable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.77);
    z-index: 1;
}

.home-sustainable h3 {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.7);
    color: var(--secondary-color);
}

.home-sustainable p {
    position: relative;
    z-index: 2;
    color: #eee;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    padding-right: 100px;
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.5);
}

.home-sustainable p:last-child {
    text-align: right;
    padding-top: 1rem;
    margin-bottom: 0;
    padding-right: 50px;
    font-style: italic;

}

.home-features {
    background-color: #222;
    padding: 30px 10vw 35px;
    color: #eee;
}

.home-features-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-feature {
    flex: 1;
    text-align: center;
}

.home-feature svg {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

.home-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.home-feature p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.home-service {
    background-color: #ccc;
    padding: 25px 10vw;
    text-align: center;
    color: #000;
}

.home-service-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.home-service svg {
    width: 40px;
    height: 40px;
}

.home-service-content {
    text-align: left;
}

.home-service h4 {
    font-size: 1rem;
    margin-bottom: 0rem;
}

.home-service p {
    font-size: 0.9rem;
}

.home-service a {
    text-decoration: underline;
    color: var(--secondary-color);
    font-weight: bold;
}

.home-service a:hover {
    color: #555;
}

.home-gears {
    padding: 80px 10vw 70px;
}

.home-gears-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.home-gears-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.home-gears-content {
    flex: 0 0 60%;
}

.home-gears h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.1);
}

.home-gears p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.home-gears img {
    flex: 0 0 40%;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 5px;
    border: 1px solid #999;
}

@media (max-width: 768px) {
    .home-gears-row {
        flex-direction: column;
    }
    
    .home-gears-row:nth-child(2) {
        flex-direction: column;
    }
    
    .home-gears img,
    .home-gears-content {
        flex: 0 0 100%;
    }
} 