.hero {
    width: 100%;
    display: flex;
    background-size: cover;
    background-position: center;
    background-image: url('../img/hero/seasonal-lunch.jpg');
    align-items: center;
    justify-content: flex-start;
    color: var(--light-color);
    position: relative;
}
.hero .container {
display: flex;
    justify-content: center;
    align-items: center;
    max-height: 690px;
    min-height: 600px;
  }

  #wework-catering {
    max-width: 350px;
    margin: 20px 0;

  }

.hero-fill {
    position: absolute;
    top: -1px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222222;
    opacity: 0.8;
    z-index: 0;
}

.hero-content {
    max-width: 50%; /* Adjust the width of the content area */
    max-width: 550px;
    z-index: 2;
    padding: 40px 0;
  }
  
  .hero-content h1 {
    font-size: 3em; /* Adjust size as needed */
    font-weight: 700; /* Assuming a bold font-weight */
  }
  
  .hero-content h4 {
    font-size: 1em;
    font-weight: 500; /* Assuming medium font-weight */
  }
  
  .hero-content p {
    font-size: 1.2em;
    font-weight: 400; /* Assuming regular font-weight */
    margin-bottom: 20px; /* Spacing before the CTA button */
    color: var(--light-color);
  }

  
  .hero-image {
    z-index: 1;

    max-width: 50%; /* Adjust based on the image size */
  }
  
  .hero-image img {
    width: 100%; /* Make the image responsive */
    height: auto;
    height: 100%;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .container {
      flex-direction: column;
    }

    .hero .container {
      max-height: 100%;
    }
  
    .hero-content, .hero-image {
      max-width: 100%;
    }

    .hero-content {
        max-width: 600px;
        margin: 100px 0 50px 0;
        
    }
  }

    /* Responsive adjustments */
    @media (max-width: 800px) {
    
      .hero-content {
          margin: 10px 0 50px 0;
          padding: 10px 0;
      }

      .hero-content h1 {
        font-size: 2.5em;
    }

    #wework-catering {
      max-width: 250px;
    }
    }