body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
  }
  
  header {
    background-color: #002868;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
  }
  
  nav {
    position: sticky;
    top: 0;
    background: #c8102e;
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    z-index: 1000;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  .hero {
    background-image: url('https://www.vfw.org/images/default-source/home-page/hero-home.jpg');
    background-size: cover;
    background-position: center;
    height: 100px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 8px #000;
  }
  
  .container {
    padding: 20px;
    max-width: 960px;
    margin: auto;
    background: white;
  }
  
  footer {
    background-color: #002868;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
  }
  
  @media (max-width: 600px) {

    nav {
      flex-direction: column;
      gap: 10px;
      padding: 10px;
      font-size: 1rem;
    }
  
    .hero {
      height: 150px; /* adjust for smaller screens */
      font-size: 1rem;
      padding: 10px;
    }
  
    .location-section {
      flex-direction: column;
      align-items: center;
    }
  
    .location-section .address {
      border-right: none;
      border-bottom: 3px solid #002868;
      width: 100%;
      max-width: 100%;
      padding: 1rem;
    }
  
    .location-section .map {
      width: 100%;
      max-width: 100%;
      padding: 1rem 0;
    }
  
    .board {
      width: 100%;
      max-width: 100%;
      height: auto;
    }
  
    .about-us {
      width: 95%;
      padding: 0 10px;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr; /* stack images */
    }
  
  }
  
  .location-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    margin: auto;
    background-color: #fff;
    align-items: stretch;
    justify-content: center;
  }

  .location-section .map {
    flex: 1 1 60%;
    min-width: 300px;
    max-width: 500px;
    height: auto;
  }

  .location-section .address {
    flex: 1 1 35%;
    min-width: 280px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-right: 3px solid #002868;
  }

  .location-section .address p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
  }

  .location-section .map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
  }

  .board {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
    height: auto;
  }

  .contact-form-section {
    background-color: #ffffff;
    padding: 2rem;
    max-width: 960px;
    margin: 2rem auto;
    border-top: 3px solid #002868;
  }
  
  .contact-form-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #002868;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form label {
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }
  
  .contact-form button {
    width: fit-content;
    padding: 0.75rem 1.5rem;
    background-color: #c8102e;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
  }
  
  .contact-form button:hover {
    background-color: #a00e25;
  }

  .about-us {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  nav {
    position: sticky;
    top: 0;
    background: #c8102e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    z-index: 1000;
    flex-wrap: wrap;
  }
  
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 0 20px;
  }
  
  .menu-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .menu-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .menu-links a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 600px) {
    nav {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
    }
  
    .menu-toggle {
      display: block;
      align-self: flex-end;
    }
  
    .menu-links {
      display: none;
      flex-direction: column;
      width: 100%;
      margin-top: 10px;
      gap: 10px;
    }
    
    .menu-links.show {
      display: flex;
    }
  
    .menu-links.show {
      display: flex;
    }
    
    .sponsor-grid {
    flex-direction: column;
    align-items: center;
  }
  }
  
  .sponsor-section {
  background-color: #ffffff;
  padding: 2rem;
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.sponsor-section h2 {
  color: #002868;
  margin-bottom: 1.5rem;
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.sponsor img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Size classes */
.sponsor.large {
  width: 100%;
  max-width: 400px;
}

.sponsor.medium {
  width: 100%;
  max-width: 250px;
}

.sponsor.small {
  width: 100%;
  max-width: 150px;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.info-image {
  max-width: 100%;
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
