/* ---------- Catering Page Styles (MAIN ONLY) ---------- */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    color: #003C30;
    overflow-x: hidden;
    background-image: url("images/background2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 55px 20px;
    color: #003C30;
    border-radius: 18px;
    margin: 20px 8%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    color: #000;
}

/* Content Sections */
.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 50px;
    flex-wrap: wrap;
    border-radius: 18px;
    margin: 30px 8%;
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.section-content {
    flex: 1;
    min-width: 300px;
}

.section-content h2 {
    font-size: 2rem;
    color: #8b5e3c;
    margin-bottom: 15px;
}

.section-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000;
}

.section-image {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
}

.section-image img {
    width: 70%;
    max-width: 330px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.section-image img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media(max-width: 768px) {
    .section {
        flex-direction: column !important;
        text-align: center;
        padding: 40px 5%;
    }

    .section-image img {
        width: 100%;
        max-width: 350px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}