﻿/* Event Gallery Styles */
.event-gallery-container {
  padding: 20px;
  background-color: #f9f9f9;
}

.event-gallery-container h2 {
  font-size: 24px;

  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  display: inline-block;
  padding-bottom: 5px;
}

.event-section {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.event-section img {
  width: 30%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-section img:hover {
  transform: scale(1.05);
}
.event-gallery-container h2 {
  font-size: 24px;
  font-weight: bold;        /* Make text bold */
  text-align: center;       /* Center the text */
  color: #2c3e50;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
  padding-bottom: 5px;
  width: 100%;              /* Ensure it spans full width for center alignment */
}
