/* --------------------------------------------------------------
   DOG WALKING, PET SITTING, HOUSE SITTING, AND SENIOR LIVING STYLES
-------------------------------------------------------------- */

/* MAIN BACKGROUND FOR ALL SERVICE PAGES */
.services-page {
    background: url('../Assets/Images/FadedWallpaper.jpg') no-repeat center center / cover;  /* Background image */
    background-attachment: fixed;
    min-height: 100vh;
    padding: 2rem 1rem;
    position: relative;
  }
  
  /* SERVICE TITLE */
  .service-title {
    font-size: 2.5rem;
    color: #136171;  /* Primary heading color */
    margin-bottom: 1rem;
    border-bottom: 2px solid #a75e99;  /* Brand underline accent */
    display: inline-block;
    padding-bottom: 0.3rem;
    text-align: center;
  }
  
  /* IMAGE CONTAINER */
  .service-image {
    margin-bottom: 1.5rem;
  }
  
  .service-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
  }
  
  /* PARAGRAPH TEXT BLOCK */
  .service-description p,
  .free-meet-greet p {
    font-size: 1.15rem;
    color: #555;  /* Body text color */
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
  }
  
  /* SHARED BLOCK STYLES */
  .service-block,
  .free-meet-greet {
    padding: 2rem 2.5rem;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Shadow for the blocks */
    text-align: center;
    box-sizing: border-box;
  }
  
  /* Unique background colors */
  .service-block {
    background-color: #ffffff; /* Service block background */
  }

  .service-block p {
    margin: 1.5rem 0;
  }
  
  .free-meet-greet {
    background-color: #feb7d8; /* Meet & Greet background */
    border: 1px solid #a75e99; /* Meet & Greet border */
  }
  
  .free-meet-greet h2 {
    font-size: 2rem;
    color: #136171;  /* Section title color */
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #a75e99;  /* Brand underline accent */
    display: inline-block;
  }

  
  .free-meet-greet p {
    font-size: 1.1rem;
    color: #136171;  /* Meet & Greet text color */
    margin: 1.5rem 0;
  }
  
  /* SERVICE CARD GRID */
.walk-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .service-times {
    background-color: #83d7e6;  /* Card background */
    border: 1px solid #2c5f68;  /* Card border */
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);  /* Card shadow */
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 280px;
    max-width: 320px;
  }
  
  .service-times:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);  /* Hover shadow */
  }
  
  .service-times h2 {
    font-size: 1.8rem;
    color: #a75e99;  /* Card title accent */
    margin-bottom: 0.2rem;
  }

  .service-times h5 {
    font-size: 0.8rem;
    color: #a75e99;  /* Card subtitle accent */
    margin-bottom: 0.5rem;
  }
  
  .service-times h3 {
    font-size: 1.2rem;
    color: #333;  /* Card supporting text */
    margin-bottom: 1rem;
  }
  
  .service-times ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #136171;  /* Card list item text */
  }

  /* Utility: unstyled lists for service pages */
  .list-unstyled {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .service-times ul p {
    margin: 0.5rem 0 0.25rem;
    font-weight: bold;
    color: #136171;  /* Card list item heading */
  }
  
  /* RESPONSIVE SHARED STYLES */
  @media (max-width: 768px) {
    .service-title {
      font-size: 2rem;
    }
  
    .service-block,
    .free-meet-greet {
      padding: 1.5rem;
    }
  
    .service-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .service-times {
      max-width: 90%;
    }
  }
  
  @media (max-width: 480px) {
    .service-title {
      font-size: 1.6rem;
    }
  
    .service-block,
    .free-meet-greet {
      padding: 1rem;
    }
  
    .service-description p,
    .free-meet-greet p,
    .free-meet-greet b {
      font-size: 1rem;
    }
  
    .service-cards {
      padding: 0;
    }
  }
