/**
 * Theme1 Hero3 Styles
 * Frontend-Stile für den Hero-Bereich mit Bild links und Text rechts
 */

/* Google Fonts einbinden */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

.wp-block-theme1-hero3 {
    position: relative;
    padding: 5rem 0;
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.theme1-hero3-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.theme1-hero3-content {
    flex: 0 0 48%;
    max-width: 48%;
    padding-left: 2rem; /* Geändert von padding-right zu padding-left */
    background-color: transparent;
}

.theme1-hero3-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37; /* Gold-Akzentfarbe */
    margin-bottom: 1rem;
    margin-top: 0;
}

.theme1-hero3-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e3a32; /* Dunkelgrün */
    margin-bottom: 1rem;
    margin-top: 0;
    background-color: transparent;
}

.theme1-hero3-description {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    background-color: transparent;
}

/* Styling für die Details mit Icons */
.theme1-hero3-details {
    margin-bottom: 1.1rem;
    font-family: 'Oswald', sans-serif;
}

.theme1-hero3-detail {
    display: flex;
    align-items: center;
    margin-bottom: 0.10rem;
    font-size: 1.1rem;
    color: #1e3a32;
}

.theme1-hero3-icon {
    margin-right: 0.75rem;
    color: #d4af37; /* Gold-Akzentfarbe */
    flex-shrink: 0;
}

.theme1-hero3-detail-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.theme1-hero3-image {
    flex: 0 0 48%;
    max-width: 48%;
    position: relative;
    order: -1; /* Wichtig: Bild vor dem Text anordnen */
}

.theme1-hero3-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.theme1-hero3-image img:hover {
    transform: scale(1.02);
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .wp-block-theme1-hero3 {
        padding: 4rem 0;
    }
    
    .theme1-hero3-title {
        font-size: 3rem;
    }
    
    .theme1-hero3-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .theme1-hero3-inner {
        flex-direction: column;
    }
    
    .theme1-hero3-content,
    .theme1-hero3-image {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0; /* Geändert von padding-right zu padding-left */
    }
    
    .theme1-hero3-content {
        margin-bottom: 0; /* Kein Margin-Bottom, da das Bild jetzt oben ist */
        margin-top: 3rem; /* Margin-Top hinzugefügt */
        text-align: center;
    }
    
    .theme1-hero3-image {
        order: -1; /* Bild bleibt oben */
    }
    
    .theme1-hero3-title {
        font-size: 2.5rem;
    }
    
    .theme1-hero3-subtitle {
        font-size: 1.1rem;
    }
    
    .theme1-hero3-details {
        margin-bottom: 1.5rem;
    }
    
    .theme1-hero3-detail {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .wp-block-theme1-hero3 {
        padding: 3rem 0;
    }
    
    .theme1-hero3-title {
        font-size: 2rem;
    }
    
    .theme1-hero3-subtitle {
        font-size: 1.1rem;
    }
    
    .theme1-hero3-description {
        font-size: 1.1rem;
    }
    
    .theme1-hero3-detail {
        font-size: 1.1rem;
    }
} 