/* Haupt-Sektion Hintergrund & Spacing */


.block-startseite {
    position: relative;
}

.block-startseite-section {
    color: #ffffff;
    background-color: transparent; /* Verlässt sich auf das Body-Hintergrundbild/Verlauf */
    position: relative;
    padding-bottom: 80px;
    overflow: hidden;
}

.startseite-watermark {
    position: absolute;
    right: 0%;
    bottom: -110%;
    opacity: .2;
    user-select: none;
    pointer-events: none;
    height: 80em;
    width: 80em;
}


/* Linke Spalte */
.block-startseite-left {
    padding-right: 40px;
}

.startseite-container{
    z-index: 2;
    margin:0 auto;
}

.startseite-title {
    font-size: 38px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.startseite-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.startseite-text p {
    margin-bottom: 20px;
}

/* Abgeschrägter "Jetzt Anfragen" Button */
.startseite-btn-wrapper {
    margin-top: 40px;
}

.startseite-request-btn{
    font-weight:700;
}

/* Rechte Spalte (Link-Menü) */
.block-startseite-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 30px;
}

.startseite-link-list {
    padding-top:10px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}


.startseite-link-list .hero-link-second{
    width:80%;
    margin:0 auto;
    padding:5px 30px !important;
}


.startseite-link-list .hero-link-second span{
    width: 100%;
    text-align: center;
}

/* Die restliche Link-Liste */
.startseite-sublinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.startseite-sublinks li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Feine Trennlinie */
    padding: 15px 0;
    text-align: center;
}

.startseite-sublinks li a {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.startseite-sublinks li a:hover {
    color: #008fca; /* Schöner Hover-Effekt im passenden Blau */
    transform: translateX(3px);
}

/* Responsive Anpassungen */
@media screen and (max-width: 991px) {
    .startseite-container{
        max-width: 85vw;
    }
    .block-startseite-left {
        padding-right: 15px;
        margin-bottom: 60px;
    }
    
    .block-startseite-right {
        padding-left: 15px;
    }
    
    .startseite-link-list {
        max-width: 70%;
        margin: 40px auto 0 auto;
    }
    
    .startseite-title {
        font-size: 22px;
    }
    .startseite-request-btn{
        padding:10px 40px !important; 
    }
    .startseite-watermark{
        display: none;
    }
}