:root {
    --primary-pink: #e91e63;
    --primary-cyan: #00bcd4;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --darkest-bg: #0f0f23;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

/* Logo center (default + tablet) */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo img {
    max-width: 200px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.nav-item a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-item a:hover {
    color: var(--primary-pink);
}
.nav-item.active a {
    border-bottom: 2px solid var(--primary-pink);
    padding-bottom: 4px;
}

/* Icons Right */
.nav-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-light);
}
.nav-icon:hover {
    color: var(--primary-pink);
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-pink);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Sidebar (mobile only) */
.sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100%;
    background: var(--darker-bg);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1100;
}
.sidebar.active {
    left: 0;
}
.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar ul li {
    margin: 15px 0;
}
.sidebar ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar ul li a:hover {
    color: var(--primary-pink);
}
/* Dropdown base */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background: #1a1a2e;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}

.nav-item.dropdown .dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-item.dropdown .dropdown-menu a:hover {
  background: #00bcd4;
}

/* Show dropdown on hover (desktop) */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}
.overlay.active {
    display: block;
}

/* Mobile */
@media (max-width: 845px) {
    .nav-menu {
        display: none; /* hide nav menu */
    }
    .hamburger {
        display: flex; /* show hamburger */
    }
    .logo img {
        max-width: 160px;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .logo img {
       display: none;
    }
    .sidebar {
        width: 200px;
    }
    .sidebar ul li a {
        font-size: 0.85rem;
    }
}

/* Large screen only (≥1200px) */
@media (min-width: 764px) {
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* left - center - right */
        align-items: center;
    }
    /* Logo left */
    .logo {
        position: static;
        transform: none;
        justify-self: start;
    }
    /* Nav menu center */
    .nav-menu {
        justify-self: center;
    }
    /* Icons right */
    .nav-icons {
        justify-self: end;
    }
}


/* --- Hero Responsive --- */


/* Hero Section */
.hero {
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: bgScroll 15s infinite;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes bgScroll {
    0% {
        background-image: url('/img/7.png');
    }
    33% {
        background-image: url('/img/2.jpg');
    }
    66% {
        background-image: url('/img/3.jpg');
    }
    100% {
        background-image: url('/img/4.jpg');
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(233, 30, 99, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 188, 212, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    42% { transform: translateY(-20px) translateX(10px); }
    75% { transform: translateY(-10px) translateX(-10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 6%;
}

.hero-label {
    display: inline-block;
    color: var(--primary-cyan);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
}

.hero-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-cyan);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-pink {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: var(--primary-pink); /* overridden below for white */
  overflow: hidden;
}

.title-white {
  color: var(--text-light);
}

/* Shine effect */
.title-pink::before
 {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 12%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(0deg);
  animation: shineMove 2s linear infinite;
  pointer-events: none;
}

/* Keyframes for shine movement */
@keyframes shineMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 35px;
    border: none;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-pink {
    background: var(--primary-pink);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn-pink:hover {
    background: #c2185b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-cyan {
    background: var(--primary-cyan);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.btn-cyan:hover {
    background: #0097a7;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.btn-dark {
    background: var(--text-dark);
    color: var(--text-light);
}

.btn-dark:hover {
    background: #555;
}

/* About Section */
.about-section {
    padding: 280px 0;
  background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/1.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

    position: relative;
}



.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    color: var(--primary-pink);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.section-title.white {
    color: var(--text-light);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: var(--primary-cyan);
}

.title-decoration.white .decoration-line {
    background: var(--text-light);
}

.decoration-dots {
    display: flex;
    gap: 8px;
}

.decoration-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.title-decoration.white .decoration-dots span {
    background: var(--text-light);
}

.decoration-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.decoration-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.about-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
   
    margin: 0 auto 25px;
   
}


/* Glow effect for image and text on hover */
.feature-item:hover .feature-icon img {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.884));
    transition: filter 0.3s ease;
}

.feature-item:hover .feature-title {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transition: text-shadow 0.3s ease, color 0.3s ease;
}



.feature-title {
  position: relative;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-pink);
  overflow: hidden;
   text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation effect */
.feature-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.719),
    transparent
  );
  
  transform: skewX(-0deg);
}

/* Trigger on hover */
.feature-title:hover::before {
  animation: shine 1s ease-in-out;
  color: var(--primary-cyan);
}
.feature-item:hover .feature-title {
  color: var(--primary-cyan);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.feature-item:hover .feature-title::before {
  animation: shine 1s ease-in-out;
}

/* Animation keyframes */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Section structure fix */
.about-section {
  position: relative;
  z-index: 1; /* Keeps it below video */
}

.video-section {
  position: relative;
  z-index: 10; /* Brings video above both sections */
}

.overlap-dj {
  position: relative;
  top:130px;
  margin-bottom: px;
  text-align: center;
  z-index: 10;
}

/* DJ section layered beneath video */
.dj-sets-section {
  position: relative;
  z-index: 0;
}

.dj-sets-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-pink) 0%, #c2185b 100%);
  z-index: -1; /* Background stays in back */
}

/* DJ section content stays above background */
.dj-sets-section .container {
  position: relative;
  z-index: 1;
}

/* Optional glow on hover */







/* DJ Sets Section */


.playlist-container {
    max-width: 900px;
    margin: 0 auto;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.track-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 30px;
    min-width: 50px;
    color: var(--text-light);
}

.track-details {
    flex: 1;
    margin-right: 30px;
}

.track-artist {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.track-album {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.track-time {
    margin-right: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--text-light);
    min-width: 50px;
}

.track-progress {
    width: 120px;
    margin-right: 25px;
}

.progress-line {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--text-light);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.track-play-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.track-play-btn:hover {
    background: var(--text-light);
    color: var(--primary-pink);
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
  background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/5.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
}

/* Background Decorations */
.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration {
  position: absolute;
  opacity: 0.1;
}


/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-label {
  color: #ff1744;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}



/* Testimonials Slider */
.testimonial-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%; /* Show one at a time */
    box-sizing: border-box;
    padding: 20px;
}

.slider-container {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}


.testimonial-content {
  text-align: center;
  padding: 40px 20px;
}

/* Profile Section */
.profile-section {
  margin-bottom: 30px;
}

.profile-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
}

.profile-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #ff1744, #00d4ff);
  border-radius: 50%;
  z-index: -1;
  animation: rotate 8s linear infinite;
}

.profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.profile-name {
  font-size: 20px;
  font-weight: 600;
  color: #ff1744;
  margin-bottom: 0;
}

/* Testimonial Text */
.testimonial-text {
  margin-bottom: 60px;
  margin-left: 300px;
  margin-right: 300px;
}

.testimonial-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #00d4ff;
 
 
}

/* Read More Button */
.read-more-btn {
  background: linear-gradient(45deg, #ff1744, #ff4569);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

/* Hover Effect */
.read-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 23, 68, 0.5);
  background: linear-gradient(45deg, #ff4569, #ff1744);
}

/* Tablet screens (≤992px) */
@media (max-width: 992px) {
  .read-more-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* Mobile screens (≤768px) */
@media (max-width: 768px) {
  .read-more-btn {
    padding: 9px 20px;
    font-size: 12px;
    border-radius: 20px;
  }
}

/* Small mobile screens (≤480px) */
@media (max-width: 480px) {
  .read-more-btn {
    padding: 8px 16px;
    font-size: 11px;
    width: 100%; /* full width button on very small screens */
    max-width: 250px; /* but not too large */
    margin: 0 auto;
    display: block;
  }
}


/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #ff1744, #ff4569);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.nav-prev {
  left: 100px;
}

.nav-next {
  right: 100px;
}


.nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 23, 68, 0.5);
}

.nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Slider Indicators */
.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff1744;
  border-color: #ff1744;
  transform: scale(1.2);
}

.indicator:hover {
  border-color: #ff1744;
}

/* Animations */


/* Responsive Design */
@media (max-width: 1024px) {
  .nav-prev {
    left: 10px;
  }

  .nav-next {
    right: 10px;
  }

  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .nav-prev {
    left: 10px;
  }

  .nav-next {
    right: 10px;
  }

  .testimonial-text p {
    font-size: 16px;
  }

  .profile-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .nav-prev {
    left: 10px;
    
    transform: none;
  }

  .nav-next {
    right: 10px;
    
    transform: none;
  }

  .section-title {
    font-size: 28px;
  }

  .testimonial-slide {
    padding: 0 10px;
  }

  .testimonial-content {
    padding: 30px 10px;
  }
 
}
/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/1.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-cyan);
    background: transparent;
    color: var(--primary-cyan);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-cyan);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item {
  max-width: 250px;
  margin: 0 auto;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233, 30, 98, 0.452), rgba(0, 187, 212, 0.521));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--text-light);
    animation: zoomPulse 1s ease-in-out infinite;
}

@keyframes zoomPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.gallery-btn-container {
    text-align: center;
}
.contact-section {
  padding: 120px 0;
  background: var(--darker-bg);
}

.contact-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.contact-box,
.map-box {
  flex: 1 1 400px;
  border: 2px solid var(--primary-cyan);
  border-radius: 12px;
  padding: 30px;
  background: transparent;
  color: var(--text-light);
}

.contact-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--primary-pink);
  text-align: center;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-gray);
  border: 1px solid var(--primary-cyan);
  border-radius: 5px;
  height: 50px;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--primary-cyan);
  margin-left: 60px;
}

/* Map Styling */
.map-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

/* Booking Section */
.booking-section {
    padding: 120px 0;
    background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/5.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

    position: relative;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-description {
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    gap: 20px;
}

.form-input {
    flex: 1;
    padding: 18px 20px;
    border: 2px solid var(--primary-cyan);
    border-radius: 8px;
    background: transparent;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-gray);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.3);
}

.booking-btn {
    align-self: center;
    min-width: 200px;
}


/* ================= Video Section ================= */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.video-thumbnail {
  width: 100%;
  max-width: 800px; /* Desktop max width */
  border: 3px solid #00ffff;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffff;
  overflow: hidden;
}

.video-thumbnail video {
  width: 100%;   /* Full responsive width */
  height: auto;  /* Maintain aspect ratio */
  border-radius: 8px;
  display: block;
}

/* ================= DJ Sets ================= */
.playlist-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--darker-bg);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 18px;
  border-radius: 8px;
  transition: 0.3s;
}

.track-item:hover {
  background: var(--darkest-bg);
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(0,255,255,0.3);
}

.track-number {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary);
  margin-right: 10px;
}

.track-details h4 {
  font-size: 16px;
  color: var(--text-light);
}

.track-time {
  font-size: 14px;
  color: var(--text-gray);
  margin-right: 10px;
}

.track-play-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.track-play-btn:hover {
  background: #7a3fd1;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .video-thumbnail {
    max-width: 70%;
    
  }
}

@media (max-width: 768px) {
  .track-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
.video-container {
  display: none;
  
}
  .track-play-btn {
    align-self: flex-end;
  }
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--primary-pink);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: var(--text-light);
    color: var(--text-dark);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* ================= Responsive ================= */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-input {
    width: 100%;
    max-width: 350px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
/* Footer */
.footer {
    padding: 80px 0 40px;
    background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(69, 81, 112, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/4.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;

}

.footer-content {
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 600px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 30px;
}

.footer-logo i {
    font-size: 3rem;
    color: var(--primary-cyan);
}

.footer-logo-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.footer-logo-text span {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .testimonials-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .video-container {
    
    width: 400px;
    
}
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
   .testimonial-text {
  margin-bottom: 60px;
  margin-left: 400px;
  margin-right: 400px;
}
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .track-item {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .track-progress {
        order: 3;
        width: 100%;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    

}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}


/* ABout Page */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
   
    border-radius: 12px;
    max-width: 500px;
    margin: auto;
   
    justify-items: center;
    align-items: center;
}

.download-item {
    background-color: #e91e63;
    border-radius: 50%; /* Circular */
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
    cursor: pointer;
}

.download-item:hover {
    background: radial-gradient(circle, #00bcd4, #1a1a2e);
    transform: translate(5px, -5px);
    box-shadow: 0 0 15px #00bcd4, 0 0 30px #00bcd4, 0 0 45px #00bcd4;
}

.download-item i {
    font-size: 36px;
    color: #ffffff;
    transition: transform 0.4s ease, color 0.4s ease;
}

.download-item:hover i {
    transform: rotate(10deg) scale(1.2);
    color: #ffffff;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section */
.about-section {
    padding: 100px 0;
      background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/1.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    color: #e91e63;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0 30px 0;
    color: #ffffff;
}

.main-description {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sub-description {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.read-more-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
      background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/2.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid #00bcd4;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 24px;
    color: #00bcd4;
    margin-bottom: 5px;
    font-weight: bold;
}

.member-role {
    color: #e91e63;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e91e63;
}

/* Features Section */
.features-section {
    padding: 100px 0;
         background: 
  linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.8)),
  url('/img/2.gif');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.title-decoration {
    margin-top: 20px;
}



.features-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item1 {
    margin-bottom: 40px;
}

.feature-number {
    color: #00bcd4;
    font-size: 24px;
    font-weight: bold;
}

.feature-title1 {
    color: #e91e63;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    text-transform: capitalize;
}

.feature-description {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.features-right .feature-item1 {
    text-align: right;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-right .feature-item1 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
    }
    
    
}
            
