body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #e0e0e0;
}

h1 {
  text-align: center;
  margin-top: 2rem;
  color: #ffffff;
}

p {
  text-align: center;
  max-width: 800px;
  margin: 1rem auto;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1e1e1e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative; /* Added this */
}

.logo {
    max-width: 150px;
}

.main-nav {
    display: flex;
}

.main-nav a, .main-nav a:visited {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #bb86fc;
}


.a:visited {
  color: #e0e0e0;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #1e1e1e;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #444;
    }

    .hamburger-menu {
        display: block;
    }
}

.site-footer {
  background-color: #1e1e1e;
  color: #a0a0a0;
  padding: 3rem 0 1rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  color: #bb86fc;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a, .footer-section ul a:visited {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul a:hover {
  color: #bb86fc;
}

.social-links {
  margin-top: 1rem;
}

.footer-section .social-links a, .footer-section .social-links a:visited {
  color: #bb86fc;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section .social-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section {
    text-align: center;
  }
}

.placeholder-img, .event-img {
  display: block;
  margin: 2rem auto;
  max-width: 90%;
  border-radius: 8px;
  background-color: #2c2c2c;
  border: 1px solid #444;
}

.event-graphic {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}


.form-container {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-align: center;
}

.calendar, .form-container form {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

form label {
  display: block;
  margin-bottom: .5rem;
  color: #e0e0e0;
}

form input, form textarea {
  width: calc(100% - 20px);
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 4px;
  border: 1px solid #444;
  background-color: #2c2c2c;
  color: #e0e0e0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: #bb86fc;
  box-shadow: 0 0 0 2px rgba(187, 134, 252, 0.3);
}

form button {
  background-color: #bb86fc;
  color: #121212;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #a166e0;
}

.contact-button {
  display: block;
  width: fit-content;
  margin: 2rem auto;
  padding: 12px 24px;
  background-color: #bb86fc;
  color: #121212;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.contact-button:hover {
  background-color: #a166e0;
}

@media (max-width: 768px) {
  form button {
    width: 100%;
  }
}

.container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #1e1e1e;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.card h2 {
  margin-top: 0;
  color: #bb86fc;
  border-bottom: 2px solid #bb86fc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.card a, .card a:link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #bb86fc;
}

.card a, .card a:visited {
  color: #d04ff1;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  margin-bottom: 2rem;
}

.carousel-images {
  display: flex;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  display: block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}
