/* ============================================================
   DJ OSSA — NIGHTCLUB THEME
   PART 1 — ROOT, RESET, GLOBAL LAYOUT, NAVBAR, HERO
   ============================================================ */

/* ------------------------------------------------------------
   COLOR SYSTEM
------------------------------------------------------------ */
:root {
  --primary: #ff007f;
  --primary-soft: rgba(255, 0, 127, 0.25);
  --primary-glow: 0 0 18px rgba(255, 0, 127, 0.65);

  --accent: #35ffe3;
  --accent-soft: rgba(53, 255, 227, 0.25);
  --accent-glow: 0 0 18px rgba(53, 255, 227, 0.6);

  --bg: #04020a;
  --bg-alt: #0b0516;
  --bg-card: rgba(10, 7, 22, 0.9);

  --text: #ffffff;
  --muted: #c9c4d9;

  --border: rgba(255, 255, 255, 0.12);

  --radius: 1.4rem;

  --shadow-card: 0 0 35px rgba(0, 0, 0, 0.55);
  --shadow-neon: 0 0 25px rgba(255, 0, 127, 0.35),
    0 0 15px rgba(53, 255, 227, 0.35);
}

/* ------------------------------------------------------------
   RESET
------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top, #1a1035 0%, #05030b 55%);
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.65;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------------------------------------
   GLOBAL LAYOUT
------------------------------------------------------------ */
.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 4.2vw + 1rem, 3.6rem);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: var(--accent-glow);
  text-align: center;
}

.section-subtitle {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.8rem;
  font-size: 0.93rem;
  text-align: center;
}

/* ------------------------------------------------------------
   NAVBAR
------------------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: rgba(5, 3, 11, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.6rem 0;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.brand-title {
  height: 30px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px #ff007f) drop-shadow(0 0 5px #35ffe3);
}

.brand-location {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.9rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: var(--primary-glow), var(--accent-glow);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ff53a6);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--primary);
  box-shadow: var(--primary-glow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 0, 127, 0.55);
}

.btn-primary {
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ff3fa4);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--primary);
  box-shadow: 0 0 18px rgba(255, 0, 127, 0.55);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 26px rgba(255, 0, 127, 0.8);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: scale(0.96);
}

.btn-outline {
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.22s ease,
    background-color 0.22s ease;
  text-shadow: 0 0 12px rgba(53, 255, 227, 0.6);
}

.btn-outline:hover {
  background-color: rgba(53, 255, 227, 0.2);
  box-shadow: 0 0 18px rgba(53, 255, 227, 0.6);
  transform: translateY(-3px) scale(1.03);
}

.btn-outline:active {
  transform: scale(0.96);
}

/* MOBILE NAV */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.3rem;
    background: rgba(5, 3, 11, 0.95);
    border-bottom: 1px solid var(--border);
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
    transform-origin: top;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------ */
#hero {
  padding-top: 5rem;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(2px);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(8, 3, 20, 0.9) 50%,
    rgba(5, 3, 11, 1) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.7rem;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.hero-title {
  width: min(90%, 420px); /* responsive size */
  height: auto;
  display: block;

  /* Neon glow like original text-shadow */
  filter: drop-shadow(0 0 12px var(--primary))
    drop-shadow(0 0 26px var(--accent));

  margin-bottom: 0.8rem;

  /* Optional: subtle float animation */
  animation: neonPulseImg 2.4s ease-in-out infinite;
}

@keyframes neonPulseImg {
  0% {
    filter: drop-shadow(0 0 8px var(--primary))
      drop-shadow(0 0 18px rgba(53, 255, 227, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px var(--accent))
      drop-shadow(0 0 32px rgba(255, 0, 127, 0.7));
  }
  100% {
    filter: drop-shadow(0 0 8px var(--primary))
      drop-shadow(0 0 18px rgba(53, 255, 227, 0.3));
  }
}

.hero-title:hover {
  transform: scale(1.02);
  transition: 0.25s ease;
}

@keyframes neonPulse {
  0% {
    text-shadow: 0 0 8px var(--primary), 0 0 18px rgba(53, 255, 227, 0.3);
  }
  50% {
    text-shadow: 0 0 20px var(--accent), 0 0 32px rgba(255, 0, 127, 0.7);
  }
  100% {
    text-shadow: 0 0 8px var(--primary), 0 0 18px rgba(53, 255, 227, 0.3);
  }
}

.hero-tagline {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 1.9rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ============================================================
   PART 2 — HERO (CONT.), ABOUT, GIGS, MUSIC & LIVE CLIP LAYOUT
   ============================================================ */

/* ---------- HERO (CONTINUED) ---------- */

.hero-stats {
  display: flex;
  gap: 1.6rem;
  margin-top: 0.5rem;
}

.hero-stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.09em;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius);
  background: radial-gradient(circle at top left, #2a1744, #070312);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-card), var(--shadow-neon);
  overflow: hidden;
  min-height: 260px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 120deg,
    rgba(255, 0, 127, 0.6),
    rgba(53, 255, 227, 0.5),
    transparent,
    rgba(255, 0, 127, 0.7)
  );
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.hero-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.hero-card-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-badge {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
}

/* ============================================================
   ABOUT
   ============================================================ */

#about {
  background: radial-gradient(circle at top, #160f33 0%, #070214 55%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-divider {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 1.1rem 0 1.7rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.pill {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.76rem;
  color: var(--muted);
  background: rgba(5, 3, 15, 0.9);
}

.about-body {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.about-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 0.45rem;
}

/* RIGHT SIDE — PHOTO + HIGHLIGHT BOX */

.about-photo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-photo {
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255, 0, 127, 0.25),
    0 0 30px rgba(53, 255, 227, 0.25);
  animation: floatAbout 6s ease-in-out infinite;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes floatAbout {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.about-highlight-box {
  padding: 1.5rem 1.6rem;
  border-radius: 1.2rem;
  background: rgba(5, 3, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: var(--muted);
}

.about-highlight-box strong {
  color: #fff;
}

.about-highlight-text {
  margin-top: 0.9rem;
}

/* ============================================================
   GIGS / LIVE SECTION
   ============================================================ */

#gigs {
  background: #05030b;
}

.gigs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: flex-start;
}

.gigs-list {
  display: grid;
  gap: 0.9rem;
}

.gig-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 1.1rem;
  background: rgba(9, 6, 18, 0.95);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.gig-date {
  text-align: center;
  min-width: 60px;
}

.gig-date-month {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.gig-date-day {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
}

.gig-info-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.gig-info-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.gig-info-meta span + span::before {
  content: "•";
  margin-inline: 0.4rem;
  color: rgba(255, 255, 255, 0.35);
}

.gig-badge {
  font-size: 0.7rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.gig-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.text-accent {
  color: var(--accent);
}

.gigs-side-card {
  padding: 1.5rem 1.6rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top left, #231339, #080312);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  color: var(--muted);
  box-shadow: var(--shadow-card);
}

.gigs-side-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.gigs-side-text {
  margin-top: 0.9rem;
}

/* ============================================================
   MUSIC SECTION — TEXT LEFT, PLAYER RIGHT
   ============================================================ */

#music {
  background: #070214;
}

/* Grid for section layout */
.music-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* text left, player right */
  gap: 3rem;
  align-items: center;
}

/* Left column (labels, title, subtitle, subheading) */
.music-left .section-label,
.music-left .section-title,
.music-left .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.music-left .section-subtitle {
  margin-bottom: 1.8rem;
}

/* "🔥 Featured Mix" */
.music-subheading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Right column (player container) */
.music-right {
  display: flex;
  justify-content: flex-end;
}

/* Optional tags row if you add them later */
.music-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.music-tags span {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

/* ============================================================
   LIVE CLIP SECTION — VIDEO LEFT, TEXT RIGHT
   ============================================================ */

#liveclip {
  background: #05030b;
}

/* Grid for layout */
.video-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr; /* video left, text right */
  gap: 3rem;
  align-items: center;
}

/* Left column — video wrapper */
.video-left {
  display: flex;
  justify-content: flex-start;
}

/* Right column — text */
.video-right .section-label,
.video-right .section-title,
.video-right .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.video-right .section-subtitle {
  margin-bottom: 0;
}

/* ============================================================
   PART 3 — CUSTOM AUDIO PLAYER, CUSTOM VIDEO PLAYER, GALLERY
   ============================================================ */

/* ============================================================
     CUSTOM DJ OSSA AUDIO PLAYER
   ============================================================ */

.ossa-player {
  background: rgba(10, 7, 22, 0.92);
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.4rem;
  padding: 2rem 1.6rem;
  margin: 1.5rem 0;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.25),
    0 0 36px rgba(53, 255, 227, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

/* Player layout */
.ossa-player-left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* Animated waveform */
.ossa-waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  width: 64px;
}

.ossa-waveform span {
  display: block;
  width: 4px;
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 2px;
  animation: waveBounce 0.6s ease-in-out infinite alternate;
  opacity: 0.85;
}

.ossa-waveform span:nth-child(odd) {
  height: 12px;
}

.ossa-waveform span:nth-child(even) {
  height: 6px;
}

@keyframes waveBounce {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(2.6);
  }
}

/* Track info */
.ossa-track-info {
  flex: 1;
}

.ossa-track-title {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 3px;
}

.ossa-track-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Play button */
.ossa-play-btn {
  background: linear-gradient(135deg, var(--primary), #ff6fb5);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 0 18px rgba(255, 0, 127, 0.45);
  transition: 0.2s ease;
}

.ossa-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 26px rgba(255, 0, 127, 0.6);
}

/* Progress bar container */
.ossa-progress-container {
  width: 100%;
}

/* Progress bar */
#ossaProgress {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  cursor: pointer;
}

/* Progress thumb styles */
#ossaProgress::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

#ossaProgress::-moz-range-thumb {
  background: var(--accent);
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

#ossaProgress:hover {
  background: rgba(53, 255, 227, 0.35);
}

/* ============================================================
       CUSTOM VIDEO PLAYER
     ============================================================ */

.ossa-video-player {
  background: rgba(10, 7, 22, 0.92);
  border-radius: 1.3rem;
  padding: 1.2rem;
  width: 100%;
  max-width: 520px;
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 28px rgba(255, 0, 127, 0.25),
    0 0 36px rgba(53, 255, 227, 0.25);
  overflow: hidden;
}

/* Thumbnail */
.ossa-video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ossa-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Play button */
.ossa-video-play-btn {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 0, 127, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.55);
  transition: transform 0.2s ease;
}

.ossa-video-play-btn:hover {
  transform: scale(1.08);
}

/* Video element */
.ossa-video-element {
  width: 100%;
  height: 380px; /* match thumbnail height */
  object-fit: cover; /* maintain crop */
  border-radius: 1rem;
  display: none;
  margin-top: 1rem;
}

/* Video progress bar */
.ossa-video-progress-container {
  margin-top: 0.9rem;
}

#ossaVideoProgress {
  width: 100%;
  cursor: pointer;
  accent-color: var(--primary);
}

/* ============================================================
     GALLERY SECTION
     ============================================================ */

#gallery {
  background: #05030b;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease;
}

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

/* Neon overlay gradient */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover effects */
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.1);
}

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

/* Caption */
.gallery-caption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
}

/* ============================================================
   PART 4 — TESTIMONIALS, CONTACT, FOOTER, RESPONSIVE QUERIES
   ============================================================ */

/* ============================================================
     TESTIMONIALS / REVIEWS
   ============================================================ */

#testimonials {
  background: radial-gradient(circle at top, #140e2e 0%, #05030b 55%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
  gap: 2.6rem;
}

.testimonial-card {
  padding: 1.6rem 1.7rem;
  border-radius: 1.25rem;
  background: rgba(5, 3, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 18px rgba(255, 0, 127, 0.18),
    0 0 26px rgba(53, 255, 227, 0.18);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.testimonial-card strong {
  color: #fff;
}

.testimonial-meta {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

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

#contact {
  background: #05030b;
  padding-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: start;
}

/* Contact form */
.contact-form {
  padding: 1.8rem 1.8rem;
  border-radius: 1.3rem;
  background: rgba(7, 4, 18, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 22px rgba(255, 0, 127, 0.25),
    0 0 28px rgba(53, 255, 227, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

input,
textarea {
  width: 100%;
  background: #05030b;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(53, 255, 227, 0.5);
  background: #080312;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), #ff6fb5);
  box-shadow: 0 0 26px rgba(255, 0, 127, 0.55);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  cursor: pointer;
  transition: 0.18s ease;
}

.btn-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 0 36px rgba(255, 0, 127, 0.7);
}

/* Contact info right side */
.contact-meta {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.contact-meta a {
  color: var(--accent);
}

.contact-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

/* Social icons */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: 0.18s ease;
}

.social-link:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(24, 19, 52, 0.9);
  transform: translateY(-2px);
}

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

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.3rem 0 1.8rem;
  background: #05030b;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ============================================================
     RESPONSIVE MEDIA QUERIES
     ============================================================ */

/* Reduce padding on smaller screens */
@media (max-width: 900px) {
  section {
    padding: 4rem 0;
  }

  .hero-inner,
  .about-grid,
  .gigs-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  /* MUSIC & VIDEO MOBILE STACK */
  .music-grid,
  .video-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .music-left .section-label,
  .music-left .section-title,
  .music-left .section-subtitle,
  .music-subheading,
  .video-right .section-label,
  .video-right .section-title,
  .video-right .section-subtitle {
    text-align: center;
  }

  .music-right,
  .video-left {
    justify-content: center;
  }

  .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar-inner {
    padding-block: 0.8rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: rgba(5, 3, 11, 0.98);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.3rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: 0.18s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .ossa-player,
  .ossa-video-player {
    max-width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 500px) {
  .ossa-video-thumbnail {
    height: 180px;
  }

  .ossa-video-play-btn {
    width: 62px;
    height: 62px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MOBILE VIDEO LAYOUT — TEXT ABOVE VIDEO
   ============================================================ */

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr; /* stack layout */
  }

  .video-right {
    order: 1; /* headings first */
    text-align: center;
  }

  .video-right .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 450px;
  }

  .video-left {
    order: 2; /* video second */
    display: flex;
    justify-content: center;
  }
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */

.floating-call-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.9rem 1.4rem;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--primary), #ff4fa0);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  box-shadow: 0 0 25px rgba(255, 0, 127, 0.55),
    0 0 18px rgba(53, 255, 227, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);

  cursor: pointer;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect — glow + lift */
.floating-call-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.75),
    0 0 40px rgba(53, 255, 227, 0.45);
}

/* Icon style */
.floating-call-btn i {
  font-size: 1.1rem;
}

/* RESPONSIVE — shrink for mobile */
@media (max-width: 600px) {
  .floating-call-btn {
    bottom: 18px;
    right: 18px;
    padding: 0.75rem 1.1rem;
    font-size: 0.78rem;
    gap: 0.45rem;
  }

  .floating-call-btn i {
    font-size: 1rem;
  }
}
