body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1c1c1c;
    color: #f5f5f5;
}

header {
    background: #2e2e2e;
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background: #111;
}

nav a {
    color: #f5f5f5;
    padding: 14px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

nav a:hover {
    background: #444;
}

.container {
    padding: 40px;
    max-width: 1000px;
    margin: auto;
}

footer {
    text-align: center;
    padding: 20px;
    background: #2e2e2e;
    margin-top: 40px;
}
.hero {
    background: url("images/header.jpg") no-repeat center top/cover;
    height: 260px;
    width: 1500px;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 36px;
    text-align: center;
    margin: 0;
}
.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.events {
    max-width: 700px;
    margin: auto;
}

.event {
    background: #2a2a2a;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #f5f5f5;
}

.event h3 {
    margin: 0 0 5px 0;
}

.event p {
    margin: 0;
    font-size: 14px;
}
.contact-link {
  color: #7ec8ff;
  text-decoration: underline;
  font-weight: 600;
}
.contact-link:hover,
.contact-link:focus {
  color: #b8e4ff;
}