/* ==========================================================================
   IRON IN EMBERS - ULTRA-PREMIUM GLOBAL DESIGN SYSTEM & STYLESHEET
   Aesthetic: Dark Charcoal (#08090c), Molten Ember Copper (#ff5500), Cyan Glitch (#00f0ff), Metallic Steel
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800;900&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  --bg-dark: #07080a;
  --bg-card: #111319;
  --bg-card-hover: #181b24;
  --bg-glass: rgba(17, 19, 25, 0.92);
  
  --ember-primary: #ff5500;
  --ember-bright: #ff7700;
  --ember-glow: rgba(255, 85, 0, 0.4);
  --cyan-glitch: #00f0ff;
  --cyan-glow: rgba(0, 240, 255, 0.3);
  --steel-light: #9aa5b5;
  --steel-muted: #3a4250;
  --text-main: #f2f5fa;
  --text-dim: #9ca6b5;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Rich Atmospheric Background Radial Glow */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(ellipse at 50% 25%, rgba(255, 85, 0, 0.16) 0%, rgba(17, 19, 25, 0.85) 55%, #07080a 100%);
  pointer-events: none;
  z-index: 0;
}

/* Shimmering Embers Canvas Background */
#embers-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #252834;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ember-primary);
}

/* Typography & Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.glow-text {
  text-shadow: 0 0 20px var(--ember-glow), 0 0 40px rgba(255, 85, 0, 0.25);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--ember-bright) 55%, var(--cyan-glitch) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Top App Control Bar */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 8, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 85, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 2.5rem;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: #fff;
}

.brand-badge img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 2px solid var(--ember-primary);
  box-shadow: 0 0 14px var(--ember-glow);
  transition: var(--transition);
}

.brand-badge:hover img {
  transform: rotate(15deg) scale(1.08);
  box-shadow: 0 0 22px var(--ember-glow);
}

.brand-badge span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2.5px;
}

/* Header Live Social Bar */
.top-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-social-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.header-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
  text-decoration: none;
}

.header-social-link:hover {
  background: rgba(255, 85, 0, 0.2);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 0 12px var(--ember-glow);
}

.btn-glow {
  background: linear-gradient(135deg, var(--ember-primary), #cc4400);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: var(--transition);
  box-shadow: 0 0 16px var(--ember-glow);
  text-decoration: none;
  font-size: 0.92rem;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 85, 0, 0.65);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--ember-primary);
  color: var(--ember-bright);
  background: rgba(255, 85, 0, 0.12);
  transform: translateY(-2px);
}

/* Container Views */
.view-container {
  display: none;
  position: relative;
  z-index: 2;
}

.view-container.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   HERO ALBUM SPOTLIGHT SHOWCASE & BRAND LOGO BANNER
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  width: 100%;
  text-align: center;
}

/* Official Resized & Centered Brand Logo Banner (Fits Webpage Perfectly) */
.hero-brand-banner {
  max-width: 520px;
  width: 85%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 85, 0, 0.4));
  transition: var(--transition);
}

.hero-brand-banner:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 35px rgba(255, 85, 0, 0.65));
}

.album-spotlight-box {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.75rem;
  align-items: center;
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 45px rgba(255, 85, 0, 0.25);
  text-align: left;
}

.spotlight-art-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.spotlight-album-art {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--ember-primary);
  box-shadow: 0 0 35px var(--ember-glow);
}

.spotlight-info {
  display: flex;
  flex-direction: column;
}

.stream-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.btn-platform {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  justify-content: center;
}

.btn-platform:hover {
  border-color: var(--ember-primary);
  background: rgba(255, 85, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 0 18px var(--ember-glow);
}

.btn-spotify:hover { border-color: #1DB954; background: rgba(29, 185, 84, 0.2); }
.btn-apple:hover { border-color: #fff; background: rgba(255, 255, 255, 0.2); }
.btn-youtube:hover { border-color: #FF0000; background: rgba(255, 0, 0, 0.2); }

/* Embedded Audio Player Widget */
.player-bar {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.75rem;
  margin: 2rem auto -3.5rem;
  max-width: 1040px;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(24px);
}

.player-art {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1.5px solid var(--ember-primary);
  box-shadow: 0 0 10px var(--ember-glow);
}

.player-info { flex: 1; }
.player-title { font-weight: 700; font-size: 1.05rem; }
.player-artist { font-size: 0.85rem; color: var(--text-dim); }

.player-controls { display: flex; align-items: center; gap: 1.25rem; }

.btn-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember-primary), #d44400);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 15px var(--ember-glow);
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--ember-glow);
}

.visualizer-canvas {
  width: 220px;
  height: 40px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sections */
.section {
  padding: 6.5rem 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

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

.section-subtitle {
  color: var(--ember-primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

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

/* Release Cards & Track Direct Stream Buttons */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.merch-card:hover {
  transform: translateY(-8px);
  border-color: var(--ember-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 0 25px var(--ember-glow);
}

.merch-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #141720;
}

.merch-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.merch-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.track-direct-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.track-link-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: var(--transition);
}

.track-link-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.track-link-btn.spotify:hover { background: rgba(29, 185, 84, 0.25); border-color: #1DB954; }
.track-link-btn.apple:hover { background: rgba(255, 255, 255, 0.25); border-color: #fff; }
.track-link-btn.youtube:hover { background: rgba(255, 0, 0, 0.25); border-color: #FF0000; }

/* Tour & Event Cards */
.tour-list { display: flex; flex-direction: column; gap: 1.25rem; }

.tour-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.tour-card:hover {
  border-color: var(--ember-primary);
  transform: translateX(8px);
  box-shadow: -8px 0 25px var(--ember-glow);
}

.tour-date { display: flex; flex-direction: column; min-width: 130px; }
.tour-day { font-family: var(--font-heading); font-size: 1.85rem; font-weight: 900; color: var(--ember-bright); }
.tour-month { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; }

.tour-venue-info { flex: 1; padding: 0 2rem; }
.tour-city { font-weight: 700; font-size: 1.15rem; display: flex; align-items: center; gap: 0.5rem; }
.tour-venue { color: var(--text-dim); font-size: 0.9rem; }

/* Footer */
.site-footer {
  background: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.5rem 2rem 2.5rem;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--ember-primary);
  border-color: var(--ember-primary);
  transform: translateY(-4px);
  box-shadow: 0 0 20px var(--ember-glow);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--ember-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 960px) {
  .album-spotlight-box { grid-template-columns: 1fr; text-align: center; }
  .spotlight-art-wrapper { max-width: 280px; margin: 0 auto; }
  .hero-title { font-size: 2.75rem !important; }
  .top-nav { padding: 0.85rem 1.25rem; }
  .header-social-bar { display: none; }
  .hero-brand-banner { max-width: 360px; }
}
