/**
 * Theme1 Hero1 Styles
 * Frontend-Stile für den Hero-Bereich mit Bild und Text
 */

/* Google Fonts einbinden */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

.wp-block-theme1-hero1 {
    position: relative;
    padding: 5rem 0;
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.theme1-hero1-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-hero1-content {
    flex: 0 0 48%;
    max-width: 48%;
    padding-right: 2rem;
    background-color: transparent;
}

.theme1-hero1-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37; /* Gold-Akzentfarbe */
    margin-bottom: 1rem;
    margin-top: 0;
}

.theme1-hero1-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-hero1-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 das Datum mit Icon */
.theme1-hero1-date {
    display: flex;
    align-items: center;
    margin-bottom: 1.1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #1e3a32;
}

.theme1-hero1-date-icon {
    margin-right: 0.5rem;
    color: #d4af37; /* Gold-Akzentfarbe */
}

.theme1-hero1-date-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.theme1-hero1-button-container {
    margin-top: 1.5rem;
}

.theme1-hero1-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #1e3a32; /* Dunkelgrün */
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.theme1-hero1-button:hover {
    background-color: #d4af37; /* Gold */
    color: #1e3a32; /* Dunkelgrün */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.theme1-hero1-image {
    flex: 0 0 48%;
    max-width: 48%;
    position: relative;
}

.theme1-hero1-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.theme1-hero1-image img:hover {
    transform: scale(1.02);
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .wp-block-theme1-hero1 {
        padding: 4rem 0;
    }
    
    .theme1-hero1-title {
        font-size: 3rem;
    }
    
    .theme1-hero1-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .theme1-hero1-inner {
        flex-direction: column;
    }
    
    .theme1-hero1-content,
    .theme1-hero1-image {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }
    
    .theme1-hero1-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .theme1-hero1-title {
        font-size: 2.5rem;
    }
    
    .theme1-hero1-subtitle {
        font-size: 1.1rem;
    }
    
    .theme1-hero1-date {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wp-block-theme1-hero1 {
        padding: 3rem 0;
    }
    
    .theme1-hero1-title {
        font-size: 2rem;
    }
    
    .theme1-hero1-subtitle {
        font-size: 1.1rem;
    }
    
    .theme1-hero1-description {
        font-size: 1.1rem;
    }
    
    .theme1-hero1-date {
        font-size: 1.1rem;
    }
    
    .theme1-hero1-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
} 