/* Reset & base */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a {
  color: #7b4cff;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: #b366ff;
  outline: none;
}
ul {
  list-style: disc inside;
  padding-left: 0;
  margin-left: 0.5rem;
  color: #ccc;
}
ul li {
  margin-bottom: 0.8rem;
}
h2 {
  color: #4b0082;
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #4b0082;
  padding-bottom: 0.3rem;
  letter-spacing: 1.2px;
}
h3 {
  color: #8247e5;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
p, li {
  font-size: 1.15rem;
  color: #eee;
}
.btn {
  display: inline-block;
  background: #4b0082;
  color: #fff;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 0 12px #4b0082aa;
  margin-top: 1rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}
.btn:hover, .btn:focus {
  background: #7b4cff;
  box-shadow: 0 0 18px #b366ffcc;
  cursor: pointer;
  outline: none;
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  background-color: #0a0a0a;
  border-bottom: 3px solid #4b0082;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(75, 0, 130, 0.7);
}
nav .logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #4b0082;
  letter-spacing: 2px;
  user-select: none;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #4b0082;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
nav ul li a:hover, nav ul li a:focus, nav ul li a[aria-current="page"] {
  color: #b366ff;
  border-bottom: 3px solid #b366ff;
  outline: none;
}

/* Hero (only home page) */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10%;
  align-items: center;
  text-align: center;
  color: #d1b3ff;
}
.hero .mic-icon {
  font-size: 80px;
  color: #4b0082;
  text-shadow: 0 0 15px #b366ff;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  text-shadow: 0 0 20px #b366ff;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  color: #eee;
  text-shadow: 0 0 10px #330066;
}

/* Main container */
main {
  max-width: 900px;
  margin: 3rem auto 5rem;
  padding: 0 2rem;
  background-color: #111111;
  border-radius: 14px;
  box-shadow: 0 0 40px #4b0082cc;
}
section {
  margin-bottom: 3.5rem;
}

/* Forms */
input, textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  border: none;
  margin-top: 0.3rem;
  font-size: 1rem;
  color: #000;
}
label {
  margin-top: 1rem;
  display: block;
  font-weight: 600;
  color: #ccc;
}

/* Images */
.event-image {
  display: block;
  height: 250px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 0 25px #4169E1;
  margin: 2rem auto;
}

/* Responsive */
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  main {
    margin: 2rem 1rem 3rem;
    padding: 1.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.1rem;
  }
}

/* Footer */
footer {
  background-color: #4b0082;
  color: #eee;
  text-align: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  margin-top: 2rem;
}
.footer-top p,
.footer-about p {
  margin: 0.2rem auto 0.5rem;
  max-width: 600px;
  line-height: 1.4;
  font-size: 0.85rem;
}
.footer-top h3 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
  color: #d9b3ff;
}
.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.4rem 0;
}
.footer-social-icons a {
  font-size: 1.3rem;
  color: #d9b3ff;
  transition: color 0.3s ease;
}
.footer-social-icons a:hover {
  color: #fff;
}
.copyright {
  font-size: 0.75rem;
  margin-top: 0.3rem;
  opacity: 0.8;
}

/* Full-screen video background */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
main, nav, footer, .hero {
  position: relative;
  z-index: 1;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}
.logo-icon {
  height: 100px;
  width: auto;
}

/* Font */
@font-face {
  font-family: 'Mexcellent';
  src: url('fonts/Mexcellent-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ✅ Scroll Tape Styling */
.scroll-tape {
  background: #4b0082; /* Purple like the footer */
  color: #fff;         /* White text */
  height: 3cm;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 2rem 0;
  display: flex;
  align-items: center;
}
.scroll-text {
  display: flex;
  font-family: 'Mexcellent', sans-serif;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3cm;
  animation: scroll-left 15s linear infinite;
}
.scroll-text span {
  flex-shrink: 0;
  padding-right: 4rem;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* DJ images */
.dj-images {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}
.dj-images img {
  max-width: 45%;
  border-radius: 10px;
  box-shadow: 0 0 20px #4169E1;
}

/* Blue glow for gallery images */
.gallery img {
  width: 320px;
  height: 320px;     /* square */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px #4169E1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.gallery img:hover {
  transform: scale(1.05);
}

/* Blue glow for Facebook video embed */
.video-container {
  max-width: 800px;   
  aspect-ratio: 16 / 9;  
  margin: 0 auto 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px #4169E1;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* Our work section */
.our-work {
  text-align: left;      /* align all text to left */
}

.our-work h3 {
  color: #8247e5;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.our-work p {
  max-width: 800px;
  margin: 0 0 2rem 0;    /* left aligned, no auto horizontal margin */
  color: white;        /* match h3 color */
  text-align: left;      /* ensure paragraph text is left aligned */
}


/* Gallery layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* always two per row */
  gap: 1rem;
  justify-items: center;
}

@media (max-width: 700px) {
  .gallery {
    grid-template-columns: 1fr;  /* single column on small screens */
  }
  .gallery img {
    width: 90%;
    height: auto;  /* auto height keeps ratio */
  }
}

