/* ---------- ROOT / BASE ---------- */

:root {
  --bg-dark: #050710;
  --bg-darker: #020308;
  --accent: #ff4d5a;
  --accent-alt: #3be3ff;
  --accent-soft: rgba(255, 77, 90, 0.25);
  --text-main: #f7f7ff;
  --text-muted: #a3a3b5;
  --card-bg: rgba(8, 10, 20, 0.9);
  --border-soft: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  scroll-behavior: smooth;
  background: radial-gradient(circle at top, #1b1030 0, #050710 45%, #000 100%);
  background-size: 320% 320%;
  animation: gradientShift 28s ease-in-out infinite;
}

/* smooth scrolling for anchor jumps */
html {
  scroll-behavior: smooth;
}

/* ---------- LAYOUT HELPERS ---------- */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: radial-gradient(circle at top, #141726 0, #020308 60%);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* ---------- HEADER / NAV ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 16, 0.96),
    rgba(5, 7, 16, 0.7)
  );
  border-bottom: 1px solid var(--border-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* if you use an image logo */
.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(238, 240, 240, 0.7));
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-bottom: 0.25rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  box-shadow: 0 0 12px rgba(59, 227, 255, 0.8);
  transition: width 0.2s ease-out;
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--text-main);
  font-size: 1.3rem;
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255, 77, 90, 0.2), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(59, 227, 255, 0.22), transparent 55%),
    url("images/hero-main.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(255, 77, 90, 0.16), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: heroGlow 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0, #000 90%);
  opacity: 0.65;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 5rem 0 4rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-alt);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 30rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* moving light streak behind hero content */
.hero-content::before {
  content: "";
  position: absolute;
  inset: -40px -120px auto auto;
  height: 120px;
  background: linear-gradient(120deg, transparent, rgba(59, 227, 255, 0.55), transparent);
  opacity: 0.6;
  transform: translateX(-140%);
  filter: blur(14px);
  animation: scanline 9s linear infinite;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out,
    border-color 0.15s ease-out,
    color 0.15s ease-out;
}

.btn.primary {
  background: radial-gradient(circle at 0 0, var(--accent-alt), var(--accent));
  color: #050710;
  box-shadow:
    0 0 18px rgba(59, 227, 255, 0.6),
    0 14px 40px rgba(0, 0, 0, 0.6);
  animation: buttonPulse 2.9s ease-in-out infinite;
}

.btn.primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 0 26px rgba(59, 227, 255, 0.95),
    0 18px 50px rgba(0, 0, 0, 0.8);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(5, 7, 16, 0.7);
  color: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.7);
}

.btn.ghost:hover {
  background: rgba(5, 7, 16, 0.95);
  border-color: var(--accent-alt);
}

/* ---------- MUSIC ---------- */

.music-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.music-player {
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(59, 227, 255, 0.12), rgba(6, 9, 24, 0.95));
}

.track-list {
  display: grid;
  gap: 1rem;
}

.track-card {
  position: relative;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), rgba(5, 7, 16, 0.96));
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.track-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(59, 227, 255, 0.5),
    transparent 30%,
    rgba(255, 77, 90, 0.6),
    transparent
  );
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease-out;
}

.track-card:hover::before {
  opacity: 0.6;
}

.track-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.track-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- TOUR ---------- */

.tour-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: linear-gradient(
    145deg,
    rgba(3, 4, 10, 0.98),
    rgba(15, 18, 40, 0.98)
  );
  box-shadow: var(--shadow-soft);
}

.tour-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.tour-table th,
.tour-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  font-size: 0.95rem;
}

.tour-table thead {
  background: linear-gradient(
    90deg,
    rgba(255, 77, 90, 0.16),
    rgba(59, 227, 255, 0.16)
  );
}

.tour-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.tour-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.table-link {
  color: var(--accent-alt);
  text-decoration: none;
  font-weight: 500;
}

.table-link:hover {
  text-decoration: underline;
}

/* ---------- GALLERY ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, filter 0.18s ease-out;
  filter: saturate(1.05);
}

/* subtle floating animation per image */
.gallery-grid img:nth-child(odd) {
  animation: floatSoft 8s ease-in-out infinite;
}

.gallery-grid img:nth-child(even) {
  animation: floatSoft 9.5s ease-in-out infinite reverse;
}

.gallery-grid img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.8);
  filter: saturate(1.2);
}

/* ---------- ABOUT ---------- */

.section-split {
  background: radial-gradient(circle at top left, var(--accent-soft), transparent 65%);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.split-layout p {
  color: var(--text-muted);
}

.about-highlight {
  background: radial-gradient(circle at top, rgba(59, 227, 255, 0.12), rgba(8, 10, 20, 0.96));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.about-highlight h3 {
  margin-top: 0;
}

.about-highlight ul {
  padding-left: 1.2rem;
  margin: 0.75rem 0 0;
}

.about-highlight li {
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

/* ---------- CONTACT ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.contact-email a {
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-alt);
}

.contact-email a:hover {
  color: var(--accent-alt);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), rgba(5, 7, 16, 0.96));
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  transition: transform 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out, box-shadow 0.12s ease-out;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

.social-links a:hover {
  transform: translateY(-2px) scale(1.05);
  background: radial-gradient(circle at top, rgba(59, 227, 255, 0.26), rgba(5, 7, 16, 0.96));
  border-color: var(--accent-alt);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

/* ---------- FOOTER ---------- */

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: rgba(2, 3, 8, 0.98);
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- REVEAL-ON-SCROLL ANIMATION ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------- KEYFRAMES ---------- */

@keyframes gradientShift {
  0% {
    background-position: 0% 30%;
  }
  50% {
    background-position: 100% 70%;
  }
  100% {
    background-position: 0% 30%;
  }
}

@keyframes heroGlow {
  0% {
    transform: translate3d(-4%, -3%, 0) scale(1.05);
  }
  50% {
    transform: translate3d(6%, 5%, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-2%, 0, 0) scale(1.04);
  }
}

@keyframes scanline {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(60%);
  }
}

@keyframes buttonPulse {
  0% {
    box-shadow:
      0 0 18px rgba(59, 227, 255, 0.5),
      0 14px 40px rgba(0, 0, 0, 0.6);
  }
  50% {
    box-shadow:
      0 0 30px rgba(59, 227, 255, 0.95),
      0 18px 50px rgba(0, 0, 0, 0.8);
  }
  100% {
    box-shadow:
      0 0 18px rgba(59, 227, 255, 0.5),
      0 14px 40px rgba(0, 0, 0, 0.6);
  }
}

@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 880px) {
  .music-layout,
  .split-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(5, 7, 16, 0.98);
    padding: 0.75rem 1.5rem 1.25rem;
    flex-direction: column;
    gap: 0.9rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-content {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .section {
    padding: 4rem 0;
  }
}
