/* ============================================
   Spheric Pulsar Production - Website Styles
   Dark, minimalist theme
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-nav: rgba(10, 10, 10, 0.92);
  --text-primary: #d7d7d7;
  --text-secondary: #999999;
  --text-muted: #666666;
  --accent: #4a90d9;
  --accent-dim: #2a5a8a;
  --border: #222222;
  --border-light: #333333;
  --font-main: 'Segoe UI', Arial, Helvetica, sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #7ab3e8;
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  display: block;
  padding: 1rem 1.25rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  transition: var(--transition);
}

/* --- Language Switcher --- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.lang-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.35rem 0;
  z-index: 1001;
  list-style: none;
}

.lang-dropdown.open {
  display: block;
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all var(--transition);
}

.lang-dropdown li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.lang-dropdown li a.lang-active {
  color: var(--accent);
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hero-slogan {
  font-size: 2.4rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-secondary);
  color: #ffffff;
}

/* --- Sections --- */
.section {
  padding: 6rem 2rem;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--border-light);
  margin: 1.5rem auto 0;
}

/* --- Albums Grid --- */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.album-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.album-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: inherit;
}

.album-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.album-card:hover .album-cover img {
  transform: scale(1.05);
}

.album-info {
  padding: 1.25rem 1.5rem;
}

.album-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.album-year {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.album-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.album-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  border: 1px solid var(--accent-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-top: 0.75rem;
}

/* --- Album Detail Page --- */
.album-detail-hero {
  padding: 8rem 2rem 4rem;
  background: var(--bg-secondary);
}

.album-detail-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.album-detail-cover {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.album-detail-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.album-detail-info h1 {
  font-size: 2.2rem;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.album-detail-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.album-detail-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
}

.album-detail-description p {
  margin-bottom: 1.25rem;
}

/* --- Artist Section --- */
.artist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.artist-text h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.artist-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.artist-details {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.artist-details h3 {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
  font-weight: 300;
}

.detail-value {
  color: var(--text-primary);
}

/* --- Streaming Platforms --- */
.streaming-section {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.streaming-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.streaming-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.streaming-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.streaming-links a:hover {
  opacity: 1;
}

.streaming-links img {
  height: 32px;
  width: auto;
  transition: opacity var(--transition);
}

.streaming-links a:hover img {
  opacity: 0.7;
}


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

.licensing-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.licensing-card h3 {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.licensing-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

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

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

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

/* --- Legal Pages --- */
.legal-page {
  padding: 8rem 2rem 4rem;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  margin: 2rem 0 1rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  list-style: none;
  padding-left: 1rem;
}

.legal-page ul li::before {
  content: "\2013";
  margin-right: 0.5rem;
  color: var(--text-muted);
}

.legal-page a {
  color: var(--accent);
}

.legal-updated {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* --- Back Link --- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--text-primary);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .lang-dropdown {
    right: auto;
    left: 0;
  }

  .hero-slogan {
    font-size: 1.6rem;
  }

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

  .hero-logo {
    width: 100px;
  }

  .albums-grid {
    grid-template-columns: 1fr;
  }

  .artist-content {
    grid-template-columns: 1fr;
  }

  .album-detail-layout {
    grid-template-columns: 1fr;
  }

  .album-detail-cover {
    max-width: 300px;
  }

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

  .nav-logo span {
    display: none;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .streaming-links {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-slogan {
    font-size: 1.3rem;
  }

  .album-detail-layout {
    gap: 2rem;
  }

  .album-detail-info h1 {
    font-size: 1.6rem;
  }
}
