:root {
  --bg-color: #0a0a0a;
  --bg-color-light: #111111;
  --text-main: #f5f5f5;
  --text-muted: #cccccc;
  --accent-gold: #c9a34f;
  --accent-gold-hover: #d4a853;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-height: 80px;
  --transition-smooth: all 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

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

a:hover {
  color: var(--accent-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-color);
}

.btn-solid {
  background-color: var(--accent-gold);
  color: var(--bg-color);
}

.btn-solid:hover {
  background-color: transparent;
  color: var(--accent-gold);
}

section {
  padding: 6rem 5%;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 4px;
}

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

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.social-icons a {
  font-size: 1.2rem;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
  opacity: 0.05;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  flex: 1;
  z-index: 3;
  max-width: 600px;
}

.hero-subtitle {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 5rem;
  letter-spacing: 8px;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(20%) contrast(110%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-color) 0%, rgba(10,10,10,0) 100%);
  z-index: 2;
}

/* Releases */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.album-card {
  position: relative;
  group;
  cursor: pointer;
  overflow: hidden;
}

.album-cover {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--bg-color-light);
  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);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.album-card:hover .play-overlay {
  opacity: 1;
}

.play-overlay i {
  font-size: 3rem;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.play-overlay i:hover {
  color: var(--accent-gold);
}

.album-info {
  margin-top: 1rem;
}

.album-title {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
}

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

.view-all {
  margin-top: 3rem;
  text-align: center;
}

.view-all a {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Bio */
.bio {
  background-color: var(--bg-color-light);
  display: flex;
  align-items: stretch;
  padding: 0;
}

.bio-image {
  flex: 1;
  min-height: 500px;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.6) contrast(1.1);
}

.bio-content {
  flex: 1;
  padding: 6rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Video */
.video-container {
  margin-top: 3rem;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background-color: var(--bg-color-light);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

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

.news-card {
  background-color: var(--bg-color-light);
  transition: var(--transition-smooth);
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  height: 200px;
  background-color: #222;
  overflow: hidden;
}

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

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.news-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.news-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Contacts */
.contacts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.info-block {
  margin-bottom: 2rem;
}

.info-block h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.info-block p, .info-block a {
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

input, textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

input:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-gold);
}

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

/* Footer */
footer {
  text-align: center;
  padding: 3rem 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .social-icons {
    display: none;
  }
  
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
  }
  
  .hero-image {
    width: 100%;
    opacity: 0.4;
  }
  
  .hero-overlay {
    width: 100%;
    background: linear-gradient(to top, var(--bg-color) 0%, rgba(10,10,10,0) 100%);
  }
  
  .hero-content {
    z-index: 4;
  }
  
  h2 {
    font-size: 2rem;
  }
  h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .releases-grid {
    grid-template-columns: 1fr;
  }
  
  .bio {
    flex-direction: column;
  }
  
  .bio-image {
    min-height: 300px;
  }
  
  .contacts-wrapper {
    grid-template-columns: 1fr;
  }
  
  .section-title-wrapper {
    text-align: center;
  }
}
