/* HERO */
.hero-clean {
    height: 60vh;
    min-height: 420px;
    background: url('/images/bingen.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-clean::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 1100px;
    line-height: 1.4;
}

/* SECTION */
.section {
    padding: 90px 0;
}

/* HEADLINES */
h2 {
    font-size: 34px;
    font-weight: 600;
    color: #2f3a40;
    text-align: center;
}

/* TEXT */
p {
    font-size: 16px;
}

/* BUTTON */
.btn-outline-red {
    border: 2px solid #e31e24;
    padding: 14px 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-outline-red:hover {
    background: #e31e24;
    color: #fff;
}

/* IMAGE GRID */
.grid-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-text {
        font-size: 16px;
        padding: 0 20px;
    }
}
