/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{text-decoration: none;}

body {
  font-family: Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #353232;
}

/* Wrapper for content alignment */
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  background-color: white;
  margin-bottom: 20px;
  padding: 10px 0;

}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 16px;
    border-bottom: 2px solid #3f9546;
}

/* Logo + Van Agniese */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px; /* adjust size as needed */
}

.sub-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #353232;
  margin: 0;
}

/* Navigation below */
.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.nav a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
}

.nav a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Burger icon */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Current Exhibition Grid */
.current-exhibition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.current-exhibition {
  background: #fff;
  padding: 20px;
  border: 1px solid #000;
}

/* Gallery Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  display: block;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
  margin-top: 40px;
  border-bottom: 3px solid #3f9546;
  padding-bottom: 20px;
}

.contact h2 {
  font-size: 21px;
  margin-bottom: 15px;
}

.contact p {
  font-size: 14px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.8rem;
  color: #353232;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
    text-align: center;
  }

  .nav.active {
    display: flex;
  }

  .logo-container {
    justify-content: center; /* center logo on mobile */
  }
}
