body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: url('images/header-bg.jpg');
    background-repeat: repeat-x;
    background-position: left top;
    background-size: 559px auto;
    padding-left: 10px;
    height: 150px;
    padding-top: 20px;
    padding-right: 20px;
opacity: 0.8;
overflow: hidden;
}


.header .site-title h1 {
    font-size: 2em;
Color: White;
    font-weight: 900;
    text-shadow: 6px 6px 12px rgba(0, 0, 0, 0.7);
}

.header .site-title p {
    font-size: 1.4em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}


.header-content {
    display: flex;
    align-items: center;
}

.header img.logo {
    height: 150px;
    margin-right: 15px;
}

nav {
    background-color: #333;
    text-align: center;
}

nav a {
    display: inline-block;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

section {
    padding: 10px;
    max-width: 800px;
    margin: auto;
}

p {
    margin-bottom: 0.8em;
    line-height: 1.5;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

footer ul li {
    margin: 5px 0;
}

.image-gallery img {
  max-width: 450px;    /* ✅ Limit to 450px */
  width: 100%;         /* ✅ Scales within its container */
  height: auto;        /* ✅ Maintain aspect ratio */
  display: block;      /* ✅ Prevent inline spacing issues */
  margin: 0 auto;      /* ✅ Center images if block */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.event-list,
.sub-note {
  list-style: none;      /* No bullets */
  padding-left: 0;
  text-align: center;    /* Center the text */
  margin: 0 auto;
}

.event-list li {
  margin-bottom: 24px;   /* Increased spacing between main items */
  font-size: 1.1em;
  line-height: 1.6;
}

.sub-note li {
  margin-top: 0px;      /* Space above sub-note */
  font-size: 0.95em;
  color: #555;
  line-height: 1;
text-align: justify;
}
