/* === Catering page — additional styles === */

.catering-offer-section {
    padding: 60px 0;
    background-color: var(--cream-bg, #F9F5F2);
    text-align: center;
}

.catering-offer-section .section-title {
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-green, #6E7754);
}

.catering-offer-download {
    display: flex;
    justify-content: center;
}

.catering-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--primary-green, #6E7754);
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.catering-offer-link:hover {
    background-color: rgba(110, 119, 84, 0.06);
    transform: translateY(-2px);
}

.catering-offer-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.catering-offer-text {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-green, #6E7754);
}

@media (max-width: 600px) {
    .catering-offer-link {
        flex-direction: column;
        gap: 12px;
    }
    .catering-offer-text {
        font-size: 1.05rem;
        text-align: center;
    }
}
