/* THE SILENT STATIC — Raw Gritty Rock Website */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --text: #f5f5f5;
  --text-muted: #888888;
  --accent: #b91c1c;
  --accent-hover: #ef4444;
  --border: #222222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: 2px solid var(--accent);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0;
  position: relative;
  border-bottom: 1px solid var(--border);
  background-image: url('assets/Header style.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for text readability over the header image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.75) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

/* Hero content split */
.hero-top {
  padding: 40px 20px 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-bottom {
  padding: 0 20px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.8rem, 10vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.tagline {
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-bottom .tagline {
  text-transform: none;
  font-size: 1.1rem;
  line-height: 1.4;
  color: white;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-scroll {
  margin-top: 32px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.label {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* LISTEN SECTION */
.listen-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.release-meta {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 1px;
}

.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.stream-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: #1a1a1a;
  border: 2px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.stream-btn:hover {
  border-color: var(--accent);
  background: #1f1f1f;
  transform: translateY(-2px);
}

.stream-btn .platform {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.stream-btn .action {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* New streaming platforms */
.stream-btn.audiomack:hover {
  border-color: #f59e0b;
}

.stream-btn.deezer:hover {
  border-color: #00c7f2;
}

.listen-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.about-text .big {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-text p {
  color: #cccccc;
  margin-bottom: 18px;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 380px;
}

.about-visual iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Media */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.media-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.media-thumb {
  height: 160px;
  background: #1f1f1f;
  border-bottom: 1px solid var(--border);
}

.media-info {
  padding: 20px;
}

.media-info h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.media-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* YouTube video card styles */
.media-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.media-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.media-thumb.youtube-thumb {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #000;
}

.media-thumb.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.media-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.play-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

/* Connect */
.connect-section {
  background: #111;
  text-align: center;
}

.connect-content h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.connect-content p {
  max-width: 460px;
  margin: 0 auto 32px;
  color: #aaaaaa;
}

.email-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  background: #1a1a1a;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.email-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-message {
  margin-top: 16px;
  min-height: 20px;
  color: var(--accent);
  font-weight: 600;
}

/* Footer */
.footer {
  background: #000;
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.7rem;
  color: #444;
  letter-spacing: 1.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

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

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

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

  .visual-placeholder {
    height: 260px;
  }

  .email-form {
    flex-direction: column;
  }

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