/* ============================================================
   Gastro / Auwiesenhütte – Template Styles
   ============================================================ */

/* ── Page Header (Gradient, wie Termine) ──── */
.gastro-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.gastro-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--highlight-color);
}

.gastro-header__title {
    color: #fff;
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 0.25rem;
}

.gastro-header__subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.gastro-header__icon {
    color: var(--highlight-color);
    font-size: 1.4rem;
    margin-right: 0.75rem;
}

/* ── Notice Banner ────────────────────────── */
.gastro-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    color: #856404;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* ── Content Section ──────────────────────── */
.gastro-content {
    padding: 2.5rem 0 3rem;
}

.gastro-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.75;
}

.gastro-text p:last-child {
    margin-bottom: 0;
}

/* ── Info Card ────────────────────────────── */
.gastro-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.gastro-info-card__section {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.gastro-info-card__section:last-child {
    border-bottom: none;
}

.gastro-info-card__section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gastro-info-card__section h4 i {
    color: var(--highlight-color);
    width: 18px;
    text-align: center;
}

.gastro-info-card__section p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.gastro-info-card__hours {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.gastro-info-card__phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--highlight-color);
    text-decoration: none;
}

.gastro-info-card__phone:hover {
    color: var(--highlight-dark);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 991px) {
    .gastro-header__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .gastro-header {
        padding: 2.5rem 0 2rem;
    }

    .gastro-header__title {
        font-size: 1.5rem;
    }
}
