/* Global */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #101010;
  color: #fff;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
h1, h2, h3 {
  margin: 20px 0;
}
h2, h3 {
  color: #06ff12; /* Changed heading color */
  text-align: center;
  margin: 40px 0 20px;
}
a {
  color: #00ffcc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navbar */
.site-header {
  background: rgba(0,0,0,0.85);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo img {
  height: 50px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #06ff12;
}

/* Hero */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text {
  text-align: center;
  color: #fff;
}
.hero-text h1 {
  font-size: 3rem;
  color: #06ff12; /* Main hero heading color */
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #06ff12;
  color: #101010;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover {
  background: #04bb0d;
  color: #fff;
}

/* About */
.about-section {
  padding: 60px 0;
  text-align: center;
}

/* Events */
.events-section {
  padding: 60px 0;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.event-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}
.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.event-card:hover {
  transform: scale(1.05);
}
.event-info {
  padding: 15px;
}
.event-info h3 {
  color: #06ff12; /* Event card heading */
}

/* Timeline */
.upcoming-section {
  padding: 60px 0;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.timeline-item {
  background: #1a1a1a;
  padding: 15px;
  border-left: 4px solid #06ff12;
  border-radius: 5px;
}
.timeline-item .date {
  font-weight: bold;
  color: #06ff12;
}

/* Gallery */
.gallery-section {
  padding: 60px 0;
}
.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}
.slide {
  display: none;
  width: 100%;
}
.slide img {
  width: 100%;
  border-radius: 10px;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: #06ff12;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
  user-select: none;
}
.next { right: 0; }
.prev { left: 0; }
.prev:hover, .next:hover {
  color: #fff;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
}
.dots {
  text-align: center;
  margin-top: 10px;
}
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 5px;
  background-color: #444;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}
.active, .dot:hover {
  background-color: #06ff12;
}

/* Contact */
.contact-section {
  padding: 60px 0;
  text-align: center;
}
.social-icons {
  margin-top: 15px;
}
.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: #06ff12;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #fff;
}

/* Footer */
.site-footer {
  background: #000;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #333;
}
