/* Navigation styling */
nav ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

nav ul li {
  margin: 10px 0;
}

nav ul li a {
  display: block;
  padding: 10px;
  background: #f4f4f4;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background: #e0e0e0;
}

/* Header links */
header h1 a {
  color: inherit;
  text-decoration: none;
}

/* Image gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 10px;
  background: #f9f9f9;
  font-size: 14px;
  text-align: center;
}

/* Event cards */
.event-card {
  background: #f9f9f9;
  padding: 20px;
  margin: 15px 0;
  border-radius: 8px;
  border-left: 4px solid #4a90e2;
}

.event-card h3 {
  margin-top: 0;
  color: #333;
}

.event-date {
  color: #666;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Hero image section */
.hero {
  width: 100%;
  margin: 0 0 30px 0;
}

.hero img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Info boxes */
.info-box {
  background: #e8f4f8;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  border-left: 4px solid #4a90e2;
}

.info-box h3 {
  margin-top: 0;
}

/* Contact info */
.contact-info {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin: 10px 0;
}

/* Footer */
footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

/* Responsive adjustments */
@media screen and (max-width: 960px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
