/* School Meal Page Magazine-Style Design */

.school-hero {
    height: 95vh;
    min-height: 800px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../images/family_meal_premium.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.school-hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    text-transform: uppercase;
}

.school-hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Section Spacing */
.magazine-section {
    padding: 120px 0;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #176734;
    display: block;
    margin-bottom: 2rem;
}

/* Narrative Blocks */
.narrative-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.narrative-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #21252A;
}

.narrative-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Feature Grid */
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.excellence-item h4 {
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.excellence-item h4::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #176734;
    margin-right: 15px;
}

/* Contact Card */
.contact-magazine {
    background: #f8fdf9;
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.contact-card-premium {
    background: white;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-card-premium h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.btn-magazine {
    background: #176734;
    color: white;
    padding: 20px 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-magazine:hover {
    background: #135809;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(23, 103, 52, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .school-hero-content h1 {
        font-size: 3rem;
    }

    .magazine-section {
        padding: 60px 0;
    }

    .narrative-text h2 {
        font-size: 2.5rem;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .narrative-img {
        height: 350px;
    }
}