/* *********************************************************
Describ Section
********************************************************* */

.describ {
    position: static;
    background: #fff;
}

.describ h1 {
    font-size: 30px;
    font-weight: light; /* Macht die Schrift dicker */
    color: #805e2e;
}

.describ p, .tempor_text_1, .tempor_text {
    font-size: 17px;
    font-weight: light; /* Macht die Schrift dicker */
    color: #a58d6b;
}

.text-content {
    text-align: left;
    font-size: 1.1rem; /* Vergrößert die Schriftgröße */
    font-weight: 100; /* Macht die Schrift dicker */
    margin-top: 50px;
    max-width: 1050px; /* Begrenze die Breite des Textinhalts */
    margin-left: auto;
    margin-right: auto; /* Zentriere den Inhalt */
}

/* *********************************************************
Letter Section
********************************************************* */

.section-with-letter {
    color: #a58d6b;
    display: flex;
    flex-direction: column; /* Stapelt die Elemente vertikal */
    align-items: center; /* Zentriert die Inhalte horizontal */
    padding: 30px;
    position: relative;
    width: 100%; /* Stellt sicher, dass die Section die volle Breite einnimmt */
    overflow: hidden;
}

.letter-container {
    flex: 0 0 28%; /* Buchstabe nimmt 28% des Containerbereichs ein */
    position: relative;
    margin-bottom: 50px;
    z-index: 0; /* Stellt sicher, dass der Text über dem Bild liegt */
}

.background-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* *********************************************************
Shortcode Section
********************************************************* */

.shortcode_section {
    display: flex;
    flex-wrap: wrap; /* Stellen Sie sicher, dass die Elemente umgebrochen werden */
    margin-top: -20px; /* Negativer Margin-Wert, um die Höhe der `describ`-Sektion auszugleichen */
    justify-content: space-between;
    position:relative;
    z-index: 1; /* Stellt sicher, dass die Inhalte über dem Hintergrundbild angezeigt werden */

}

.shortcode_left {
    flex: 1 1 100%; /* Flex-Wachstum für vollständige Breite */
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto; /* Zentrieren des Inhalts */
    position:relative; /* Stellt sicher, dass das Bild innerhalb dieses Containers positioniert ist */
    width: 55%;   
    background-color: #f2efe5;
    color: #805e2e;
    padding: 18px 10px 10px 10px;  /*Größe der einzelnen Shortcodes*/
    border-top-left-radius: 8px; /* Abgerundete Ecken*/
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.shortcode_left img.background-logo{
    position: absolute;
    left: -100px; /* Verschiebt das Logo weiter nach links */
    width: 100px; /* Breite des Logos erhöhen */
    height: 100px; /* Höhe des Logos erhöhen */
    opacity: 0.1;
    z-index: -1; /* Stellt sicher, dass das Logo hinter dem Text liegt */
}

.heading_text, .heading_text_1 {
    width: 100%;
    font-size: 24px;
    font-weight: light; /* Macht die Schrift dicker */
    color: #805e2e;
}

.tempor_text, .tempor_text_1 {
    width: 100%;
    margin-left: 0px;
}


/* *********************************************************
Footer Section
********************************************************* */

.footer {
    position: relative; /* Stelle sicher, dass der Footer die relative Positionierung hat */
    height: 100px; /* Beispielhöhe, passe sie nach Bedarf an */
    background: #f2efe5; /* Hintergrundfarbe des Footers */
    padding: 0; /* Entferne Padding, um das Layout nicht zu beeinflussen */
    width: 100%; /* Volle Breite des Footers */
}

.footer-left {
    color: #a58d6b;
    margin: 0;
    position: absolute;
    bottom: 0; /* Am unteren Rand des Footers */
    left: 0; /* Am linken Rand des Footers */
    padding: 10px;
    text-align: left; /* Text links ausrichten */
}

.footer p {
    font-size: 17px;
    margin: 5px 0;
}

/* *********************************************************
Responsive Anpassungen
********************************************************* */

@media (max-width: 800px) {
    .shortcode_left {
        width: 100%; /* Volle Breite auf mobilen Geräten */
        margin-left: 0; /* Entfernen Sie den linken Rand */
        margin-right: 0; /* Entfernen Sie den rechten Rand */
        padding: 18px 10px 10px 10px;
    }

}

