/*********************************************
  LOCATIONS PAGE SPECIFIC STYLES
*********************************************/

/* Section container */
.locations-section {
    position: relative;
    padding: 2rem;

    text-align: center;
    overflow: hidden;
}

.locations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url("images/farm.svg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5px);
    z-index: -1; /* Keeps background behind content */
}
  
  
  .locations-section h1 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    text-decoration: underline ;
    color: var(--text); 
  }
  
  .locations-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: #252627;
  }
  
  .locations-section {
    padding: 2rem 1rem;
  }
  .location-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .location-card {
    flex: 1 1 30%;
    min-width: 300px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .location-card:hover {
    transform: translateY(-5px);
  }
  
  .location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .location-card h2 {
    font-size: 1.2rem;
    margin: 0.75rem;
    color: #000000;
  }
  
  .location-card p {
    margin: 0 0.75rem 1rem;
    color: #555;
  }
    
  
  @media (max-width: 600px) {
    .location-card {
      width: 90%;
      margin: 0 auto;
    }
    .location-card img {
      height: auto; 
    }
  }
  