body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fafafa;
  color: #333;
}

header {
  background: #1DA1F2;
  color: white;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 4px solid #0d8ddb;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

nav {
  display: flex;
  justify-content: center;
  background: white;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #1DA1F2;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #0d8ddb;
}

.section {
  background: white;
  margin: 20px auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.section h2 {
  margin-top: 0;
  color: #1DA1F2;
}
.section-special {
  background: white;
  margin: 20px auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
}

.section-special h2 {
  margin-top: 0;
  color: #1DA1F2;
}
.section-special h3{
  margin-top: 0;
  color: #1DA1F2;   
}
.split {
  columns: 2;
}

ul {
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #777;
}

a {
  color: #1DA1F2;
}
.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.event-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #1DA1F2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.event-button:hover {
  background-color: #0d8ddb;
}

 /* Photo Gallery */
.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  max-width: 800px;
  object-fit: cover;
  border-radius: 8px;
}

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

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

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


/* Mobile-friendly styles */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 10px 0;
  }

  .section {
    margin: 15px 10px;
    padding: 15px;
  }

  header h1 {
    font-size: 3.2vw;
  }

  button {
    width: 100%;
    font-size: 1em;
  }
}
