* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: white;
  overflow-x: hidden;
  background: #0a0a0a;
}

.navbar {
  display: flex;
  transform: translateX(9px);
  justify-content: center;
  height: 3rem;
  gap: 1.2rem;
  backdrop-filter: blur(4px);
  background-color: #ffd700;
  top: 40px;
  position: sticky;
  width: 95%;
  color: black;
  border-radius: 50px;
  z-index: 100;
  padding: 0 2rem;
}

.navbar a:active {
  background-color: black;
  padding-left: 5px;
  padding-right: 5px;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}

.navbar a {
  text-decoration: none;
  font-weight: 300;
  padding: 1rem 0;
  color: black;
  transition: all 0.3s ease;
}

.navbar a:hover {
  color: white;
}

#home {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1200&q=80')
              center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero-content h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.herolink {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.herolink a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffd700;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.herolink a:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
}

.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
}

.video-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.video-background .cta-btn {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
  background-color: #ffd700;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.video-background .cta-btn:hover {
  background-color: white;
  color: black;
  transform: scale(1.05);
}

.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  padding: 10px;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.mute-btn:hover {
  background: rgba(255, 215, 0, 0.8);
  color: black;
}

#about {
  padding: 6rem 2rem;
  text-align: center;
  background-color: #0a0a0a;
}

#about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffd700;
}

#about p {
  width: 100%;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
}

#gallery {
  padding: 6rem 2rem;
  background-color: #111;
  text-align: center;
}

#gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffd700;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

#events {
  padding: 6rem 2rem;
  background-color: #0a0a0a;
  text-align: center;
}

#events h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffd700;
}

.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-image {
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-details {
  padding: 20px;
}

.event-details h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.event-details p {
  margin-bottom: 15px;
  color: #ccc;
}

.event-date {
  color: #ffd700;
  font-weight: bold;
}

#contact {
  padding: 6rem 2rem;
  background-color: #111;
  text-align: center;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffd700;
}

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

.contact-info {
  text-align: left;
}

.contact-info h3 {
  color: #ffd700;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-detail i {
  color: #ffd700;
  font-size: 20px;
  margin-right: 15px;
  width: 30px;
}

.contact-form {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #ffd700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 4px;
  color: white;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #ffd700;
  color: black;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: white;
}

footer {
  background-color: #0a0a0a;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons a {
  color: white;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
}

.copyright {
  color: #ccc;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content h3 {
    font-size: 1rem;
  }

  .herolink {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .navbar {
    gap: 0.87rem;
    font-size: 0.799rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}