/* =============================================================================
   RESTAURANT CLEANING — page-specific styles (supplements ece-cleaning.css)
   Mirrors school-cleaning.css pattern: hero background override + the one
   section unique to this page (the "Your Reputation Starts the Moment Someone
   Walks In" intro panel that replaces office's stats grid).
   ============================================================================= */

/* -----------------------------------------------------------------------------
   HERO — background image override
   ----------------------------------------------------------------------------- */
.restaurant-hero {
    position: relative;
    min-height: 520px;
    background-image: url('../images/restaurant/crewcare-restaurant-banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.restaurant-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.restaurant-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* -----------------------------------------------------------------------------
   INTRO PANEL — "Your Reputation Starts the Moment Someone Walks In"
   Unique to the restaurant page. Two-column layout: copy left, restaurant
   interior image right. Replaces office's stats grid by design.
   ----------------------------------------------------------------------------- */
.restaurant-intro-section {
    background: #ffffff;
    padding: 80px 0;
}

.restaurant-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.restaurant-intro-content {
    flex: 1 1 55%;
}

.restaurant-intro-image {
    flex: 1 1 45%;
    text-align: right;
}

.restaurant-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: inline-block;
}

.restaurant-intro-heading {
    font-family: Europa, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 22px;
    line-height: 1.2;
}

.restaurant-intro-text {
    font-family: Europa, Arial, sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 22px;
}

.restaurant-intro-text:last-child {
    margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
   LEAD MAGNET BADGE — visual parity with school/office badges.
   Slightly wider max-width to accommodate the longer
   "Restaurants, Bars, Cafés and other Food Establishments" copy.
   ----------------------------------------------------------------------------- */
.restaurant-leadmagnet-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 50px;
    padding: 14px 22px;
    margin-top: 22px;
    max-width: 420px;
    width: 100%;
    transform: translateY(-47px);
}

.restaurant-leadmagnet-badge-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.restaurant-leadmagnet-badge span {
    font-family: Europa, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #59595b;
    line-height: 1.4;
}

/* -----------------------------------------------------------------------------
   BLOG / TIPS & NEWS WRAPPER — same padding scale as school-blog-section
   ----------------------------------------------------------------------------- */
.restaurant-blog-section {
    padding: 70px 0;
}

/* =============================================================================
   RESPONSIVE BREAKPOINTS
   Match the breakpoints used elsewhere in the site (991/767/479/320).
   ============================================================================= */

/* Tablet */
@media (max-width: 991px) {
    .restaurant-hero {
        min-height: 450px;
    }

    .restaurant-intro-section {
        padding: 60px 0;
    }

    .restaurant-intro-wrapper {
        gap: 40px;
    }

    .restaurant-intro-heading {
        font-size: 28px;
    }

    .restaurant-intro-text {
        font-size: 17px;
    }

    .restaurant-blog-section {
        padding: 60px 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .restaurant-hero {
        min-height: 400px;
    }

    .restaurant-hero .container {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .restaurant-intro-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .restaurant-intro-image {
        text-align: center;
    }

    .restaurant-leadmagnet-badge {
        padding: 12px 16px;
        gap: 10px;
    }

    .restaurant-blog-section {
        padding: 50px 0;
    }
}

/* Small mobile */
@media (max-width: 479px) {
    .restaurant-intro-section {
        padding: 50px 0;
    }

    .restaurant-intro-heading {
        font-size: 24px;
    }

    .restaurant-intro-text {
        font-size: 16px;
    }

    .restaurant-blog-section {
        padding: 40px 0;
    }
}

/* Very small mobile */
@media (max-width: 320px) {
    .restaurant-blog-section {
        padding: 28px 0;
    }
}
