.liebis-hero {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust based on design, usually large */
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.liebis-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}

.liebis-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.liebis-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.liebis-hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Response styles */
@media (max-width: 768px) {
    .liebis-hero-title {
        font-size: 2rem;
    }
    
    .liebis-hero {
        height: 60vh;
        min-height: 400px;
    }
}
