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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f1115;
  color: #e1e1e6;
  line-height: 1.6;
}

/* ==========================================
   STICKY NAVIGATION
   ========================================== */
header {
  position: sticky;
  top: 0;
  background-color: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid #20242c;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #e63946;
}

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

.nav-links a {
  color: #c4c4cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

/* ==========================================
   HERO SECTION STYLES (DUAL CARD LAYOUT)
   ========================================== */
.hero-section {
  position: relative;
  min-height: 80vh;
  background: linear-gradient(rgba(15, 17, 21, 0.75), rgba(15, 17, 21, 0.92)), url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.hero-overlay {
  width: 100%;
}

.hero-dual-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.hero-card {
  background: rgba(22, 25, 32, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid #20242c;
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s, transform 0.2s;
}

.hero-card:hover {
  border-color: #e63946;
  transform: translateY(-3px);
}

.hero-card-cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.hero-card h2 {
  font-size: 1.8rem;
  margin: 0.8rem 0 0.3rem 0;
  color: #ffffff;
  text-align: left;
}

.card-meta {
  color: #e63946;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.card-desc {
  color: #c4c4cc;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Badges */
.badge {
  display: inline-block;
  background-color: #e63946;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}

.badge-single {
  background-color: #2a303c;
  color: #e63946;
  border: 1px solid #e63946;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, background-color 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #e63946;
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid #414856;
}

.btn-secondary:hover {
  background-color: #20242c;
}

/* ==========================================
   CONTENT SECTIONS & GRIDS
   ========================================== */
.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.dark-bg {
  background-color: #161920;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stream-card {
  background-color: #20242c;
  padding: 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: background-color 0.3s, transform 0.2s;
}

.stream-card i {
  font-size: 2rem;
  color: #e63946;
}

.stream-card:hover {
  background-color: #2a303c;
  transform: translateY(-4px);
}

/* ==========================================
   EMBEDDED MEDIA
   ========================================== */
.player-container {
  margin-top: 2rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

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

/* ==========================================
   RELEASE STORY PAGE STYLES
   ========================================== */
.release-header h1 {
  font-size: 2.8rem;
  margin-top: 0.5rem;
  color: #ffffff;
}

.release-date {
  color: #e63946;
  font-weight: 600;
}

.lore-box {
  background-color: #161920;
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: left;
  border: 1px solid #20242c;
}

.lore-section {
  margin-bottom: 2rem;
}

.lore-section:last-child {
  margin-bottom: 0;
}

.lore-section h3 {
  font-size: 1.3rem;
  color: #e63946;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lore-section p {
  color: #c4c4cc;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ==========================================
   NEWSLETTER & SOCIAL LINKS
   ========================================== */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  border: 1px solid #20242c;
  background-color: #20242c;
  color: #fff;
  width: 300px;
}

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

.social-links a {
  color: #a8a8b3;
  font-size: 1.8rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e63946;
}

/* ==========================================
   COVER ARTWORK STYLES
   ========================================== */
.card-cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.release-cover {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #0b0c0e;
  color: #737380;
  font-size: 0.9rem;
}

/* ==========================================
   RESPONSIVE MOBILE ADJUSTMENTS
   ========================================== */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .newsletter-form input {
    width: 100%;
  }
}