/* ===== GLOBAL STYLES ===== */

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

body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: white;
  scroll-behavior: smooth;
}

/* ===== TOP BAR ===== */

.top-bar {
  background: #ff6600;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: bold;
}

.whatsapp-top {
  background: #25D366;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

/* ===== HERO SECTION ===== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url("hero.jpg");
  background-size: cover;
  background-position: center;
}

/* ===== NAVIGATION ===== */

.top-nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.nav-logo img {
  height: 300px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff6600;
}

/* ===== HERO CONTENT ===== */

.hero-content {
  position: relative;
  z-index: 5;
}

.hero h2 {
  font-size: 42px;
  animation: pulseGlow 2s infinite alternate;
}

.hero p {
  margin: 15px 0;
  color: #ff6600;
}

.btn {
  background: #ff6600;
  padding: 12px 25px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff3300;
}

/* ===== DJ LIGHT EFFECTS ===== */

.light {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  animation: rotateLight 10s linear infinite;
}

.blue {
  background: rgba(0, 102, 255, 0.6);
  top: 20%;
  left: 10%;
}

.orange {
  background: rgba(255, 102, 0, 0.6);
  bottom: 20%;
  right: 10%;
  animation-duration: 15s;
}

@keyframes rotateLight {
  0% { transform: rotate(0deg) translateX(200px); }
  100% { transform: rotate(360deg) translateX(200px); }
}

@keyframes pulseGlow {
  from { text-shadow: 0 0 10px #ff6600; }
  to { text-shadow: 0 0 25px #ff6600, 0 0 40px #ff6600; }
}

/* ===== SMOKE EFFECT ===== */

.smoke {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05), transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05), transparent 40%);
  animation: moveSmoke 20s linear infinite;
}

@keyframes moveSmoke {
  0% { transform: translate(0,0); }
  50% { transform: translate(-50px, -30px); }
  100% { transform: translate(0,0); }
}

/* ===== PARTICLES ===== */

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
  animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

/* ===== EQUALIZER ===== */

.equalizer {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.equalizer span {
  width: 6px;
  height: 20px;
  background: #ff6600;
  animation: equalize 1s infinite ease-in-out;
}

.equalizer span:nth-child(2) { animation-delay: 0.2s; }
.equalizer span:nth-child(3) { animation-delay: 0.4s; }
.equalizer span:nth-child(4) { animation-delay: 0.6s; }
.equalizer span:nth-child(5) { animation-delay: 0.8s; }

@keyframes equalize {
  0%,100% { height: 20px; }
  50% { height: 50px; }
}

/* ===== SERVICES ===== */

.services {
  padding: 80px 20px;
  text-align: center;
  background: #111;
}

.services h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background: #ff6600;
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 100px 20px;
  background: #0f0f0f;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
}

.contact-form-box {
  flex: 1;
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255,102,0,0.2);
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: white;
}

.contact-form-box button {
  background: linear-gradient(45deg, #ff6600, #ff3300);
  border: none;
  padding: 15px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form-box button:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */

footer {
  background: #000;
  text-align: center;
  padding: 20px;
}

/* ===== FLOATING WHATSAPP ===== */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 999;
}

.whatsapp-float img {
  width: 35px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  .top-nav {
    flex-direction: column;
    padding: 10px;
  }

  .nav-menu {
    margin-top: 10px;
    gap: 15px;
  }

  .nav-logo img {
    height: 70px;
  }

  .contact-container {
    flex-direction: column;
  }

}
/* ===== FAQ SECTION ===== */

.faq-section {
  padding: 80px 20px;
  background: #111;
  max-width: 1000px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: #1a1a1a;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.faq-item:hover {
  background: #222;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #ff6600;
}
/* ===== GOOGLE MAP ===== */

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255,102,0,0.3);
}
/* ===== REVIEWS ===== */

.review-section {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}

.review-section h2 {
  margin-bottom: 40px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.review-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-8px);
}

.stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 10px;
}
/* ===== GALLERY PAGE ===== */

.gallery-page {
  padding: 80px 20px;
  background: #111;
}

.filter-buttons {
  text-align: center;
  margin-bottom: 40px;
}

.filter-buttons button {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  background: #ff6600;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.filter-buttons button:hover {
  background: #ff3300;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.4s;
}

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

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
}
/* ===== VIDEO GALLERY ===== */

.gallery-item {
  position: relative;
}

.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 10px 15px;
  border-radius: 50%;
  pointer-events: none;
}

/* Lightbox video */
#popupVideo {
  max-width: 90%;
  max-height: 80%;
}
/* ===== SOCIAL SECTION ===== */

/* ===== IMPROVED SOCIAL SECTION ===== */

.social-section {
  padding: 80px 20px;
  background: #0a0a0a;
  text-align: center;
}

.social-section h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-icons a {
  font-size: 30px;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255,102,0,0.3);
}

/* Individual brand colors */
.social-icons a:nth-child(1) { background: #E1306C; } /* Instagram */
.social-icons a:nth-child(2) { background: #1877F2; } /* Facebook */
.social-icons a:nth-child(3) { background: #FF0000; } /* YouTube */
.social-icons a:nth-child(4) { background: #25D366; } /* WhatsApp */

.social-icons a:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(255,102,0,0.8);
}