/* --------------------------------------------------
   AV Party & Event Rentals – Locations Grid
   Scoped under #av-locations-section for max compatibility
   -------------------------------------------------- */
   #av-locations-section {
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
  
  #av-locations-section .av-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem; /* gutters */
  }
  
  #av-locations-section .av-grid-item {
    width: 25%;          /* 4 across default */
    padding: 0 0.5rem;   /* half-gutter each side */
    margin-bottom: 1rem;
    box-sizing: border-box;
  }
  
  #av-locations-section .av-grid-item a {
    display: block;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  
  #av-locations-section .av-grid-item a:hover {
    background-color: #e0e0e0;
  }
  
  #av-locations-section .av-grid-item h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    color: #222;
    text-align: center;
  }
  
  /* Tablet (≤1024px): 3 columns */
  @media (max-width: 1024px) {
    #av-locations-section .av-grid-item {
      width: 33.3333%;
    }
  }
  
  /* Mobile (≤600px): 2 columns */
  @media (max-width: 600px) {
    #av-locations-section .av-grid-item {
      width: 50%;
    }
  }
/* Scoped Map Embed */
#av-map-wrapper {
  width: 2000px;
  height: 500px;
  max-width: 100%;       /* ensures it never overflows on smaller screens */
  overflow: hidden;      /* hide any accidental scrollbars */
  margin: 0 auto;        /* center if container is wider than viewport */
  box-sizing: border-box;
}

#av-map-wrapper #av-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;             /* remove default iframe border */
  display: block;        /* remove any inline whitespace */
}
/* --------------------------------------------------
   AV Party & Event Rentals – Delivery Area Section
   Scoped under #av-delivery-section for max compatibility
   -------------------------------------------------- */
   #av-delivery-section {
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
  
  #av-delivery-section .av-delivery-container {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    box-sizing: border-box;
  }
  
  /* Left column: fixed square container */
  #av-delivery-section .av-delivery-image {
    flex: 0 0 500px;
    width: 500px;
    height: 500px;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  #av-delivery-section .av-delivery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Right column: text */
  #av-delivery-section .av-delivery-text {
    flex: 1;
    padding-left: 1rem;
    box-sizing: border-box;
  }
  
  #av-delivery-section .av-delivery-text h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  #av-delivery-section .av-delivery-text p {
    margin: 0 0 1rem;
    line-height: 1.5;
  }
  
  /* Mobile fallback: stack columns */
  @media (max-width: 600px) {
    #av-delivery-section .av-delivery-container {
      flex-direction: column;
    }
    #av-delivery-section .av-delivery-image {
      width: 100%;
      height: auto;
    }
    #av-delivery-section .av-delivery-image img {
      height: auto;
    }
    #av-delivery-section .av-delivery-text {
      padding-left: 0;
      margin-top: 1rem;
    }
  }


  /* Container to limit width and center */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Three‐column grid: description wider than lists */
.rgv-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* List styling */
.rgv-col--list ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 1.5rem;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
  .rgv-columns {
    grid-template-columns: 1fr;
  }
}

#search-container { display: none !important}     