body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
}
h1, h2, h3 { color: #FFD700; }
a { color: #FFD700; text-decoration: none; }
a:hover { color: #fff; }

/* Header */

.site-header {
  background: #000; /* solid black */
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #FFD700; /* gold */
}
.logo img {
  height: 80px;
  width: auto;
}

/* Nav Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #fff;
}

/* Contact Button */
.btn-nav {
  padding: 8px 16px;
  background: #FFD700;
  color: #000 !important;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.3s, transform 0.2s;
}
.btn-nav:hover {
  background: #caa300;
  transform: scale(1.05);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #111;
    border-radius: 8px;
    padding: 15px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 12px;
  }

  .nav-menu.show {
    display: block;
  }
}

/* Hero */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* black overlay */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: linear-gradient(90deg, #FFD700, #DAA520); /* gold */
  color: #000;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(90deg, #DAA520, #FFD700);
  transform: scale(1.05);
}






/* Services */
#services {
  padding: 60px 20px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.service-card {
  background: #111;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-10px); }
.service-icon {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
  transition: transform 0.3s;
}
.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Contact */
#contact {
  padding: 60px 20px;
  background: #111;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}
.contact-card {
  background: #000;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  margin-bottom: 15px;
}
.contact-card button {
  width: 100%;
  padding: 12px;
  background: #FFD700;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.contact-card button:hover { background: #caa300; }

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid #FFD700;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .nav-menu ul { flex-direction: column; gap: 10px; }
}


.two-image-section {
  padding: 80px 20px;
  background: #111;
  color: #fff;
}

.two-image-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.text-content h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-content .btn {
  background: linear-gradient(90deg, #FFD700, #DAA520);
  color: #000;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-content .btn:hover {
  background: linear-gradient(90deg, #DAA520, #FFD700);
  transform: scale(1.05);
}

/* Image grid */
.image-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-box {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.img-box img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.img-box:hover img {
  transform: scale(1.1);
}

/* Animations */
.animate-left {
  animation: slideInLeft 1s ease forwards;
}
.animate-right {
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
  from { transform: translateX(-50%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .two-image-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-grid {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .img-box {
    flex: 1;
  }
}


.about-us {
  padding: 80px 20px;
  background: #111; /* black background */
  color: #fff;
}

.about-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFD700; /* gold */
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text .btn {
  background: linear-gradient(90deg, #FFD700, #DAA520);
  color: #000;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-text .btn:hover {
  background: linear-gradient(90deg, #DAA520, #FFD700);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-us .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1; /* show image above text on mobile */
  }
}



/* ===== Event Gallery Section ===== */
.event-gallery {
  background: #0a0a0a;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.event-gallery .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37; /* Gold title */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.event-gallery .section-subtitle {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 2px solid #d4af37;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  border-radius: 12px;
}

/* Hover Glow Effect */
.gallery-item:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  transform: scale(1.03);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .event-gallery {
    padding: 70px 20px;
  }

  .event-gallery .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    gap: 15px;
  }
}
