/* ==========================================================================
   neuLand - Final Template
   ========================================================================== */
#nl-hero-container {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 120px 20px 50px 20px;
    box-sizing: border-box;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
}
#nl-hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.nl-hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nl-hero-content-wrapper .entry-title {
    color: #ffffff;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}
.nl-hero-content-wrapper .entry-meta {
    color: #dddddd;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.nl-hero-content-wrapper .meta-separator {
    margin: 0 0.7em;
}
.nl-hero-content-wrapper .entry-meta a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.nl-hero-content-wrapper .entry-meta a:hover {
    border-bottom-color: #ffffff;
}

/* ==========================================================================
   neuLand - Humpton Stil Template (angepasste Klassen)
   ========================================================================== */

/* Hauptcontainer */
.nl-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: 150px 18% 50px 18%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background-size: cover;
    background-position: center center;
    text-align: left;
}

/* Das Overlay */
.nl-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Inhalts-Wrapper */
.nl-hero__caption,
.nl-hero__description {
    position: relative;
    z-index: 2;
    max-width: 100%;
}
.nl-hero__description {
    align-self: flex-start;
    text-align: left;
}

/* --- Dark Mode Styles --- */
.nl-hero.dark-content .nl-hero__overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

.nl-hero.dark-content .nl-meta,
.nl-hero.dark-content .nl-meta a,
.nl-hero.dark-content .hero-title,
.nl-hero.dark-content .hero-title span,
.nl-hero.dark-content .hero-text,
.nl-hero.dark-content .hero-text p {
    color: #ffffff;
    text-shadow: 1px 2px 0px rgba(0,0,0,1);
	/*text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;*/
}
.nl-hero.dark-content .nl-arrow .arrow-icon::after {
	background-color: #ffffff;
}
.nl-hero.dark-content .nl-arrow .arrow-icon {
    border-color: #ffffff;
}


/* --- Light Mode Styles --- */
.nl-hero.light-content .nl-hero__overlay {
    background-color: rgba(255, 255, 255, 0.1);
}

.nl-hero.light-content .nl-meta,
.nl-hero.light-content .nl-meta a,
.nl-hero.light-content .hero-title,
.nl-hero.light-content .hero-title span,
.nl-hero.light-content .hero-text,
.nl-hero.light-content .hero-text p {
    color: #111111;
    text-shadow: 1px 2px 0px rgba(255,255,255,1);
	/*text-shadow: 
    -1px -1px 0 #fff,  
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;*/
}
.nl-hero.light-content .nl-arrow .arrow-icon::after {
	background-color: #111111;
}
.nl-hero.light-content .nl-arrow .arrow-icon {
    border-color: #111111;
}


/* Allgemeine Styles für die Elemente im Hero */
.nl-arrow {
    margin-bottom: 20px;
}

.nl-meta {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.nl-meta__item {
    display: block;
}

.nl-hero .hero-title,
.nl-hero .hero-title span {
    font-size: clamp(3rem, 7vw, 6rem);
    margin: 50px 0 25px 0;
    line-height: 1.2;
    font-family: inherit;
    /* KORREKTUR: Verhindert das Ausblenden durch Theme-JS */
    opacity: 1 !important;
    transform: none !important;
}

.nl-hero .hero-text p{
    font-size: 1.8rem !important;
    font-weight: 300; /* Leichtere Schrift für h4-Look */
    line-height: 1.7;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .nl-hero {
        padding: 120px 10% 50px 10%;
    }
}

@media (max-width: 767px) {
    .nl-hero {
        padding: 100px 5% 40px 5%;
    }
}

