body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.hero {
    position: relative;
    background-image: url('background-01.jpg'); /* Pfad zu Ihrem Hintergrundfoto */
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Links ausrichten */
    padding-left: 50px; /* Abstand von links */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Schwarzes Overlay mit 30% Opazität */
    z-index: 1;
}

.hero-content {
    position: relative;
    color: white;
    max-width: 40%;
    z-index: 2; /* Sicherstellen, dass der Inhalt über dem Overlay liegt */
}

.hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
}

.hero p {
    font-size: 16px;
    margin: 0 0 50px;
}

.btn {
    background-color: #F18419; /* Button-Farbe */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 20px; /* Abstand zwischen dem Button und dem oberen Text */
}

.btn:hover {
    background-color: #2A3244;
}

.footer {
    position: absolute;
    bottom: 10px;
    left: 50px;
    color: white;
    font-size: 12px; /* Schriftgröße des Copyright-Textes */
    z-index: 2;
}

.footer a {
    color: #F18419;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-left: 20px;
        padding-right: 20px;
        align-items: center; /* Zentrieren auf kleineren Bildschirmen */
    }

    .hero-content {
        text-align: center;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        font-size: 16px;
        padding: 8px 16px;
    }

    .footer {
        bottom: 20px;
        left: 20px;
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        padding: 6px 12px;
    }

    .footer {
        font-size: 12px;
    }
}