@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #0d0d0d;
  color: #e0e0e0;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(108, 204, 255, 0.2);
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.header-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
}

.header-image img {
  height: 100%;
  width: auto;
}

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

.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #6cf;
}

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

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: #e0e0e0;
  transition: all 0.3s;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: url('Octan Cover.png') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.5rem;
  color: #aaa;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.section p {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.artist-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(108, 204, 255, 0.2);
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(108, 204, 255, 0.2);
}

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

.artist-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
}

.artist-card p {
  padding: 0 1.5rem 1.5rem;
  color: #6cf;
  font-size: 0.9rem;
  text-align: left;
}

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

.release-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(108, 204, 255, 0.2);
  padding: 1.5rem;
}

.release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.release-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.release-card p {
  color: #aaa;
  margin-bottom: 1rem;
  text-align: left;
}

.player iframe {
  border-radius: 8px;
}

/* Footer */
footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(108, 204, 255, 0.2);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #6cf;
}

.footer-section p,
.footer-section a {
  color: #aaa;
  text-decoration: none;
}

.footer-section a:hover {
  color: #6cf;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(108, 204, 255, 0.1);
  color: #666;
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    display: none;
  }

  .header-image {
    position: static;
    transform: none;
    height: 40px;
  }

  header {
    justify-content: space-between;
    padding: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    padding: 2rem;
    transition: right 0.3s;
    gap: 1rem;
  }

  .nav-links.active {
    right: 0;
  }

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

  .hero p {
    font-size: 1.2rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}