/* SECTION STYLING */
.frepe-utility-section {
  background-color: #d7caa7 !important; /* soft latte background */
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url('./images/49f1d2a6-b999-4bee-9c9a-c0a3d4bdb38c.webp');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* Overlay Layer */
.frepe-utility-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* adjust for darker or lighter overlay */
  z-index: 1;
}

/* Make sure inner content stays above overlay */
.frepe-utility-section > * {
  position: relative;
  z-index: 2;
}

  
  /* HEADING */
  .utility-heading {
    font-family: 'Luckiest Guy', cursive;
    font-size: 38px;
    color: #ffffff; /* Starbucks dark green */
    text-shadow: 2px 2px 0 #000;
  }
  
  /* SUBHEADING */
  .utility-subtext {
    font-style: italic;
    font-size: 1.1rem;
    color: #ffffff; /* coffee tone */
    font-family: 'Luckiest Guy', cursive;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .utility-box-wrapper {
    position: relative;
  }
  
  /* Top title box */
  .utility-box-title-wrapper {
    background-color: #00552e;
    border: 4px solid #000;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    box-shadow: 3px 3px 0 #000;
    padding: 0.4rem 1rem;
    text-align: center;
  }
  
  /* Content box */
  .utility-box {
    background-color: #c3b091;
    border: 4px solid #000;
    border-top: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 3px 3px 0 #000;
    padding: 1.2rem;
    height: 100%;
  }
  
  /* Title text */
  .utility-box-title {
    font-family: 'Luckiest Guy', cursive;
    font-size: 20px;
    color: white;
    margin: 0;
  }
  
  /* Box content text */
  .utility-box-text {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1rem;
    color: #000;
    margin: 0;
  }
  
  .utility-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .utility-cta-img {
    margin-bottom: 50px;
    width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 10%;
    border: 4px solid #000;
    background-color: #ffffff;
    box-shadow: 4px 4px 0 #000;
  }
  
  /* Optional: Comic-style CTA button */
  .utility-cta-btn {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.1rem;
    padding: 0.6rem 1.4rem;
    background-color: #4b9874;
    text-decoration: none !important;
    color: #fff;
    border: 4px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 0 #000;
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  
  .utility-cta-btn:hover {
    transform: translateY(-2px);
    background-color: #00411f;
    color: rgb(255, 255, 255);
  }
  