/* Gastro Hero 2-Column Layout CSS */
/* Add this to your styles.css after the .bereich-icon section (around line 500) */

.gastro-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/gastro-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: var(--spacing-xxl) 0;
}

.gastro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(10, 108, 116, 0.35) 100%);
    z-index: 1;
}

.gastro-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    color: var(--color-white);
}

.gastro-hero-left {
    padding-right: var(--spacing-lg);
}

.gastro-hero-left h1 {
    color: var(--color-white);
    font-size: 56px;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.gastro-hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: var(--color-hellgrau);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.gastro-hero-left .btn {
    margin-top: var(--spacing-sm);
}

.gastro-hero-right {
    background-color: rgba(45, 45, 45, 0.75);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(8px);
    border-left: 4px solid var(--color-petrol-deep);
}

.gastro-hero-right h3 {
    color: var(--color-white);
    font-size: 28px;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.gastro-benefits {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--spacing-lg);
}

.gastro-benefits li {
    padding: var(--spacing-sm) 0;
    padding-left: 32px;
    position: relative;
    color: var(--color-hellgrau);
    font-size: 16px;
    line-height: 1.6;
}

.gastro-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-petrol-deep);
    font-weight: 700;
    font-size: 20px;
}

.gastro-hero-right .btn {
    width: 100%;
}

/* Responsive - Mobile Consistency */
@media (max-width: 767px) {
    .gastro-hero {
        min-height: 70vh;
    }

    .gastro-hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .gastro-hero-left {
        padding-right: 0;
        text-align: center;
    }

    .gastro-hero-left h1 {
        font-size: 36px;
    }

    .gastro-hero-subtitle {
        font-size: 18px;
    }

    .gastro-hero-right {
        border-left: none;
        border-top: 4px solid var(--color-petrol-deep);
    }
}