/* Styles for the Landing Section and Home Subsection */

/* Landing Section: 80% of viewport height, centered content, with a full-bleed background image */
.landing-section {
    height: 85vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('/img/backgrounds/meat-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  /* Optional overlay for better text contrast */
  .landing-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  .landing-section > * {
    position: relative;
    z-index: 2;
  }
  
  .landing-h1 {
    font-size: 4rem;
    margin: 10px;
    color: #fff;
  }
  
  .landing-p {
    font-size: 2rem;
    margin: 10px;
    color: #fff;
  }
  
  .landing-button-shop {
    background-color: black;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .landing-button-shop:hover {
    background-color: #333;
  }
  
  /* Home Subsection */
  .home-subsection {
    text-align: center;
    margin: 60px 0;
    padding: 0 20px;
  }
  
  .subsection-h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .sub-p-wrapper {
    max-width: 800px;
    margin: 0 auto 30px;
  }
  
  .subsection-p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* Horizontal Divider for product sections */
  .product-divider {
    width: 20%;
    height: 5px;
    background-color: #333;
    margin: 30px auto;
  }
  
  /* Provision for Products: Grid for up to 4 items */
  .product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    justify-items: center;
  }
  