body {
  margin: 0;
  background: #0a0a0d;
  color: #e5e5e5;
  font-family: 'Segoe UI', sans-serif;
}

a { color: inherit; }

.hero {
  height: 100vh;
  background: url('../img/hero.jpg') center/cover no-repeat;
  position: relative;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin: 0;
  text-shadow:
    0 0 10px #ff00e6,
    0 0 20px #ff00e6,
    0 0 30px #00eaff;
}

.hero-content .tagline {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  text-shadow:
    0 0 6px #ff00e6,
    0 0 12px #00eaff;
}


.logo {
  max-width: 160px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 0.2em;
  margin: 0;
}

.tagline {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  opacity: 0.8;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
}

.neon {
  background: linear-gradient(90deg, #ff00e6, #00eaff);
  color: #000;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-weight: bold;
  box-shadow: 0 0 12px #ff00e6;
}

.neon-text {
  color: #ff00e6;
  text-shadow: 0 0 8px #ff00e6;
}

.section {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.events-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
}

.event-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #222;
}

.event-date {
  color: #00eaff;
  font-weight: bold;
  min-width: 70px;
}

.ticket-btn {
  text-decoration: none;
}

.empty {
  text-align: center;
  opacity: 0.7;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #050507;
}

.social-link {
  margin: 0 1rem;
  text-decoration: none;
}

.sub-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #222;
}

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

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  
}

.insta-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.video-reel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

.video-item {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  text-align: center;
}

.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  display: block;
  background: #000;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff00e6;
}

.caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.lightbox video {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

/* Center the whole section */
.video-reel-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* The reel itself still scrolls horizontally */
.video-reel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  max-width: 1200px; /* keeps it centered and clean */
}

/* Video items */
.video-item {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  text-align: center;
}

/* Neon section title (same style as On the Gram) */
.section-title.neon-text {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow:
    0 0 8px #ff00e6,
    0 0 12px #ff00e6,
    0 0 20px #00eaff;
}

/* Thumbnail + play icon */
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  display: block;
  background: #000;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff00e6;
}

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

.lightbox video {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.contact-section {
  text-align: center;
  padding: 3rem 1rem;
}

.contact-text {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1rem;
}

.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.contact-icon i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow:
    0 0 8px #ff00e6,
    0 0 12px #ff00e6,
    0 0 20px #00eaff;
}

.contact-icon:hover {
  transform: scale(1.1);
  text-shadow:
    0 0 10px #ff00e6,
    0 0 20px #00eaff;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  animation: float 2s infinite ease-in-out;
}

.scroll-down .arrow {
  font-size: 2rem;
  color: #fff;
  text-shadow:
    0 0 8px #ff00e6,
    0 0 12px #ff00e6,
    0 0 20px #00eaff;
}

/* Floating animation */
@keyframes float {
  0% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
  100% { transform: translate(-50%, 0); }
}

.instagram-media {
  border: 2px solid #ff00e6 !important;
  box-shadow: 0 0 20px #ff00e6 !important;
  border-radius: 8px !important;
}

.top-left-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

.top-left-logo img {
  height: auto;
  width: auto;
  max-height: 140px; /* adjust this if you want it even bigger */
  filter: drop-shadow(0 0 6px #ff00e6);
  transition: transform 0.2s ease;
}

.top-left-logo img:hover {
  transform: scale(1.05);
}

.neon-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 30px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  z-index: 9998;
  border-bottom: 1px solid rgba(255, 0, 230, 0.4);
  box-shadow: 0 0 12px #ff00e6;
}

.neon-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.neon-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow:
    0 0 8px #ff00e6,
    0 0 12px #00eaff;
  transition: 0.2s ease;
}

.neon-nav a:hover {
  color: #ff00e6;
  text-shadow:
    0 0 12px #ff00e6,
    0 0 20px #00eaff;
  transform: scale(1.05);
}

.top-left-logo {
  position: fixed;
  top: 15px;
  left: 20px;
  z-index: 10000;
}

html {
  scroll-behavior: smooth;
}

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

.image-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px #ff00e6;
}

.gallery-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  display: block;
}

.view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff00e6;
  opacity: 1; /* always visible */
}

.bio-section {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.bio-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e5e5e5;
  opacity: 0.9;
  margin-top: 1rem;
}

.book-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000;
  background: linear-gradient(90deg, #ff00e6, #00eaff);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 15px #ff00e6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px #ff00e6;
}

.follow-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.insta-follow {
  background: linear-gradient(90deg, #ff00e6, #ff7b00);
  box-shadow: 0 0 10px #ff00e6;
}

.fb-follow {
  background: linear-gradient(90deg, #1877f2, #00eaff);
  box-shadow: 0 0 10px #00eaff;
}

.follow-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px #ff00e6;
}

.hero-qr {
  margin-top: 1.5rem;
  text-align: center;
}

.hero-qr-img {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  padding: 10px;
  background: rgba(0,0,0,0.6);
  box-shadow: 0 0 20px #ff00e6;
  transition: transform 0.2s ease;
}

.hero-qr-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff00e6;
}

.hero-qr-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #e5e5e5;
  opacity: 0.9;
}