
/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    color: white;
    text-align: left;
    padding: 20px;
    margin-top: 40px;
    font-family:  'Roboto', Arial, sans-serif;
}

/* ===== SERVICES PAGE CONTENT ===== */
.service-about {
    max-width: 900px;
    margin: 140px auto 50px auto; /* Space below navbar */
    padding: 40px 10px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    text-align: center;
    
}

.service-about h1 {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2.3em;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-about img {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    object-fit: cover;
}

.service-about p {
    font-size: 1.18em;
    color: #353535;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 620px;
    font-family:  'Roboto', Arial, sans-serif;
}

/* RESPONSIVE: Service Page */
@media (max-width: 600px) {
    .service-about {
        margin-top: 105px;
        padding: 18px 5vw;
    }
    .service-about img {
        max-width: 100%;
    }
    .service-about h1 {
        font-size: 1.4em;
    }
}

/* ===== SERVICE PAGE HEADING STRIP ===== */
.service-heading-strip {
  width: 100%;
   background-image: url('../images/strip.jpg');
    background-size: cover;      /* Cover the entire strip */
  background-position: center;
  padding: 28px 0; /* Vertical padding */
  margin-top: 100px; /* Space below navbar (adjust if needed) */
  margin-bottom: 35px; /* Space before about section */
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.service-heading-strip h1 {
  color: #fff;
  font-family:  'Roboto', Arial, sans-serif; /* Match Delicious Food heading font */
  font-size: 2.4em;
  margin: 0;
  letter-spacing: 1.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-heading-strip {
    margin-top: 100px;
    padding: 20px 0;
  }
  .service-heading-strip h1 {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .service-heading-strip {
    margin-top: 90px;
    padding: 14px 0;
  }
  .service-heading-strip h1 {
    font-size: 1.4em;
    letter-spacing: 1px;
  }
}
