/* ===== CSS VARIABLES ===== */
:root {
  --color-bg: #000000;
  --color-bg-alt: #000000;
  --color-text: #ffffff;
  --color-text-dim: #a0a0a0;
  --color-accent: #ffffff;
  --color-border: rgba(255, 255, 255, 0.1);

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --transition: all 0.3s ease;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mono);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.5s ease-out;
}

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

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-header.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.95);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-social {
  display: flex;
  gap: 1.5rem;
}

.header-social a {
  color: var(--color-text-dim);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.header-social a:hover {
  color: var(--color-text);
  transform: translateY(-3px) scale(1.1);
}

.header-nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000000;
  overflow: hidden;
  z-index: 0;
}

/* Vignette effect */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 3;
}

/* Subtle drifting gradient */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  animation: drift 30s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(8%, -8%);
  }
}

/* Single subtle orb */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 8s ease-in-out infinite;
}

.orb-2,
.orb-3 {
  display: none;
}

@keyframes breathe {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Subtle grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  z-index: 1;
}

/* Scanline effect */
.scanline {
  display: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  animation: fadeIn 1s ease-out;
}

.hero-content > * {
  pointer-events: auto;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 3rem;
  line-height: 1;
  animation: fadeIn 1s ease-out 0.2s both;
  color: #ffffff;
  font-style: normal;
  display: block;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid var(--color-text);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out 0.4s both;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-text);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.hero-cta:hover::before {
  transform: translateX(0);
}

.hero-cta:hover {
  color: var(--color-bg);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0;
  animation: fadeIn 1s ease-out 1s both, bounce 2s ease-in-out 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes gradientShift {
  0%, 100% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.12;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

.section-dark {
  background: var(--color-bg-alt);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

/* ===== ABOUT ===== */
.about-text {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 2;
  letter-spacing: 0.05em;
  max-width: 900px;
  color: var(--color-text-dim);
}

/* ===== NEW RELEASE ===== */
.release-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.release-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.release-artists {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  margin-bottom: 2.5rem;
}

.release-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.release-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.release-btn:hover {
  border-color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.news-card:hover {
  border-color: var(--color-text-dim);
  transform: translateY(-4px);
}

.news-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.news-date {
  display: block;
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.news-headline {
  padding: 0 1.5rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== MUSIC ===== */
.music-grid {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
}

.music-card {
  border: 1px solid var(--color-border);
  padding: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 280px;
}

.music-card:hover {
  border-color: var(--color-text-dim);
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.music-card:hover .music-artwork {
  transform: scale(1.05);
}

.music-artwork {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-radius: 4px;
}

.music-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.music-year {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-bottom: 0.9rem;
}

.music-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.music-links a {
  color: var(--color-text-dim);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.music-links a:hover {
  color: var(--color-text);
  transform: translateY(-3px) scale(1.1);
}

/* ===== SETS ===== */
.sets-embeds {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
}

.set-embed {
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.set-embed:hover {
  border-color: var(--color-text-dim);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.set-embed-title {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.set-embed iframe {
  border-radius: 4px;
  margin-top: 0.5rem;
}

.set-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--color-text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border: 1px dashed var(--color-border);
  border-radius: 4px;
}

/* ===== SHOWS ===== */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.show-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.show-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.5;
  min-width: 60px;
}

.show-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.show-venue {
  font-size: 1rem;
  font-weight: 500;
}

.show-location {
  font-size: 0.75rem;
  opacity: 0.5;
}

.shows-more-tba {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 2rem 0;
}

.more-tba-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.more-tba-text span {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.3;
  line-height: 1.2;
  display: block;
}

.shows-tba {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.tba-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
}

.tba-text span {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.3;
  line-height: 1;
  display: block;
  animation: fadeInUp 0.6s ease-out both;
}

.tba-text span:nth-child(1) {
  animation-delay: 0.1s;
}

.tba-text span:nth-child(2) {
  animation-delay: 0.2s;
}

.tba-text span:nth-child(3) {
  animation-delay: 0.3s;
}

/* ===== CONTACT ===== */
.contact-single {
  text-align: left;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.6s ease-out both;
}

.contact-email {
  font-size: 1.1rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  display: inline-block;
}

.contact-email:hover {
  border-bottom-color: var(--color-accent);
}

.newsletter {
  max-width: 600px;
  margin: var(--spacing-lg) auto 0;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border);
}

.newsletter-title {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input {
  padding: 1rem 1.5rem;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.newsletter-input::placeholder {
  color: var(--color-text-dim);
}

.newsletter-btn {
  padding: 1rem 2rem;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.newsletter-btn:active {
  transform: translateY(0);
}

.newsletter-success {
  display: none;
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  text-align: center;
}

.newsletter-success.show {
  display: block;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-dim);
  line-height: 1.5;
}

.newsletter-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.newsletter-consent a {
  color: var(--color-text);
  text-decoration: underline;
  transition: var(--transition);
}

.newsletter-consent a:hover {
  color: var(--color-accent);
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--color-border);
}

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

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--color-text-dim);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--color-text);
  transform: translateY(-3px) scale(1.1);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-text);
}

/* ===== PRIVACY POLICY PAGE ===== */
.policy-section {
  min-height: 100vh;
  padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-lg);
}

.policy-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.policy-date {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.policy-content {
  max-width: 800px;
  line-height: 1.8;
}

.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--color-text-dim);
}

.policy-content ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--color-text-dim);
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--color-text);
  text-decoration: underline;
  transition: var(--transition);
}

.policy-content a:hover {
  color: var(--color-accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .header-social {
    display: none;
  }

  .header-nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .hero-content {
    width: 90%;
    max-width: 90vw;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .set-embed {
    padding: 1rem;
  }

  .set-embed-title {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .header-social {
    gap: 1rem;
  }

  .music-card {
    max-width: 100%;
  }
}
