html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--brand-dark);
  color: var(--brand-light);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a {
  color: var(--brand-accent);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--brand-secondary);
  text-decoration: none;
  text-shadow: 0 0 8px var(--brand-secondary);
}

.skip-link {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 1100;
  padding: .5rem .75rem;
  background: var(--brand-primary);
  color: #fff;
  border-radius: .5rem;
}

/* Glassmorphism Navigation */
.main-nav {
  background: rgba(8, 0, 20, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.navbar-brand span {
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 0 0 10px var(--brand-secondary), 0 0 20px var(--brand-secondary);
}

.nav-link {
  border-radius: .5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(124, 31, 255, 0.2);
  color: #fff;
  text-shadow: 0 0 8px var(--brand-accent);
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 0, 20, 0.5) 0%, rgba(8, 0, 20, 0.9) 100%);
  z-index: -1;
}

.hero h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 15px var(--brand-primary), 0 0 30px var(--brand-primary);
  margin-bottom: 1.5rem;
}

.hero p.lead {
  font-size: 1.25rem;
  color: var(--brand-light);
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn-neon {
  background: var(--brand-accent);
  color: #000;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  padding: 12px 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 15px var(--brand-accent);
  transition: all 0.3s ease;
}

.btn-neon:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 25px #fff, 0 0 40px var(--brand-accent);
  transform: translateY(-3px);
}

.btn-outline-neon {
  background: transparent;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
  font-weight: 800;
  border-radius: 50px;
  padding: 10px 32px;
  text-transform: uppercase;
  box-shadow: inset 0 0 10px var(--brand-secondary), 0 0 10px var(--brand-secondary);
  transition: all 0.3s ease;
}

.btn-outline-neon:hover {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 0 20px var(--brand-secondary), 0 0 35px var(--brand-secondary);
}

/* Sections */
.section-band {
  padding: 6rem 0;
  position: relative;
}

.section-band.alt {
  background: rgba(124, 31, 255, 0.05);
  border-top: 1px solid rgba(124, 31, 255, 0.2);
  border-bottom: 1px solid rgba(124, 31, 255, 0.2);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 10px var(--brand-primary);
  display: inline-block;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--brand-secondary);
}

/* Glass Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(124, 31, 255, 0.3);
  border-color: var(--brand-primary);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card i {
  color: var(--brand-accent);
  text-shadow: 0 0 10px var(--brand-accent);
}

/* Packages */
.package-card {
  text-align: center;
  background: linear-gradient(145deg, rgba(124, 31, 255, 0.15), rgba(8, 0, 20, 0.8));
  border: 1px solid rgba(124, 31, 255, 0.3);
}
.package-card:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 20px rgba(232, 62, 255, 0.4);
}
.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-accent);
  margin: 1rem 0;
  text-shadow: 0 0 8px var(--brand-accent);
}
.package-promo {
  font-size: 1.25rem;
  color: var(--brand-secondary);
  text-decoration: line-through;
  margin-bottom: 1rem;
}

/* Activity & Gallery Images */
.img-glow {
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.img-glow:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 0 20px var(--brand-accent);
  transform: scale(1.03);
}

/* Category Grid */
.category-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
  text-decoration: none;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 0, 20, 0.9) 0%, rgba(124, 31, 255, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  transition: background 0.3s ease;
}
.category-card:hover img {
  transform: scale(1.1);
}
.category-card:hover .category-overlay {
  background: linear-gradient(0deg, rgba(8, 0, 20, 0.9) 0%, rgba(232, 62, 255, 0.6) 100%);
}
.category-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 0 0 10px #fff;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}
.floating-whatsapp:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}

/* Footer */
.site-footer {
  background: #04000a;
  border-top: 1px solid rgba(124, 31, 255, 0.3);
  padding: 4rem 0 2rem;
}

.footer-links a {
  color: var(--brand-light);
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--brand-secondary);
  text-shadow: 0 0 5px var(--brand-secondary);
}

@media (max-width: 767.98px) {
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .section-title h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    z-index: 1050;
  }
}

.grecaptcha-badge {
  visibility: hidden !important;
}
