.elementor-14718 .elementor-element.elementor-element-5282ae6{--display:flex;}.elementor-14718 .elementor-element.elementor-element-aaddd10{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8f859bf *//* 1. SCHRIFTART LADEN (MONTSERRAT) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

/* 2. GRUNDSTYLING */
.magic-hero-section {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000; /* Reines Schwarz */
    color: #FFFFFF;
    padding: 80px 20px; /* Großzügiger Abstand für Desktop */
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}
.magic-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* 3. FARBEN & AKZENTE */
.color-gold {
    color: #8A6100; /* Der Goldton */
    font-weight: 700;
}
.gold-border {
    border-left: 4px solid #8A6100;
    padding-left: 20px;
}
.button-gold {
    background-color: #8A6100;
    color: #FFFFFF;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: inline-block;
    letter-spacing: 0.5px;
}
.button-gold:hover {
    background-color: #6d4d00; /* Dunklere Hover-Farbe */
}

/* 4. TYPOGRAPHIE */
.magic-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
}
.magic-lead-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}
.magic-region-keywords {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.8;
}

/* 5. BILDBEREICH */
.magic-image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 4px #8A6100; /* Rahmen und Schatten */
}
.magic-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* 6. RESPONSIVITÄT (MOBILE VERSION) */
@media (max-width: 900px) {
    .magic-hero-section {
        padding: 50px 15px;
    }
    .magic-container {
        flex-direction: column; /* Stapeln der Elemente */
        gap: 40px;
    }
    .magic-hero-title {
        font-size: 2.2rem; /* Kleinere Schrift auf Mobile */
        text-align: center;
    }
    .magic-lead-text, .magic-region-keywords {
        font-size: 1rem;
        text-align: center;
    }
    .gold-border {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid #8A6100;
        padding-top: 15px;
        text-align: center;
    }
    .teaser-box {
        text-align: center;
        padding: 20px;
    }
}/* End custom CSS */