/* =========================
   Palette & Fonts
   ========================= */
:root { 
  --Deep_black: #000000;
  --Crimson_Red: #A50000;
  --Metallic_Silver: #C0C0C0;
  --Electric_Blue: #007BFF;
  --Dark_Gray: #333333;
  --Neon_Green: #39FF14;

  --maskdown: 'maskdown', sans-serif;
  --hostgard: 'hostgard', sans-serif;
  --pirata_one: 'Pirata One', serif;
}

@font-face {
  font-family: 'maskdown';
  src: url('Fonts/MaskdownOne-BWV7V.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'hostgard';
  src: url('Fonts/HostgardPersonalUse-JpmZB.ttf') format('truetype');
  font-display: swap;
}

/* =========================
   Base / Global
   ========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background-color: var(--Deep_black);
  color: var(--Metallic_Silver);
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

h1, h2 {
  font-family: var(--pirata_one), 'Open Sans', sans-serif;
  letter-spacing: 1px;
}

a { color: var(--Electric_Blue); text-decoration: none; }
a:hover { color: #fff; text-shadow: 0 0 6px rgba(0,123,255,0.7); }

section { padding: 60px 20px; }

/* Reusable container for consistent width */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* =========================
   Header / Banner / Nav
   ========================= */
header {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--Deep_black);
  color: var(--Metallic_Silver);
}

.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 12px 20px;
}

header .logo {
  font-family: var(--pirata_one);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: bold;
  letter-spacing: 1px;
}

.banner {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}
.banner-overlay h1 {
  margin: 0;
  font-family: var(--pirata_one), serif;
  font-size: clamp(28px, 5vw, 64px);
  color: var(--Neon_Green);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 16px 20px;
  justify-content: center;
}
nav a {
  font-family: var(--pirata_one);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--Metallic_Silver);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(165,0,0,0.9);
}

/* =========================
   Hero
   ========================= */
.hero {
  background: linear-gradient(180deg, #0c0c0c, #000);
  color: var(--Metallic_Silver);
  padding: 80px 20px;
}
.hero h1 {
  color: var(--Electric_Blue);
  text-shadow: 0 0 8px rgba(0,123,255,0.7),
               0 0 14px rgba(192,192,192,0.4);
}

/* =========================
   Discography Section
   ========================= */

.discography-section {
  padding: 60px 20px;
}

.discography-section > h2 {
  color: var(--Neon_Green);
  text-shadow: 0 0 8px rgba(57,255,20,.25);
  margin-bottom: 40px;
  font-size: clamp(30px, 5vw, 42px);
}

/* Horizontal layout */
.discography-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Each album block */
.discography-grid .album-release {
  width: 420px;
  text-align: center;
}

/* Album titles */
.discography-grid h3 {
  font-family: var(--pirata_one);
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--Neon_Green);
}

/* Blue title for upcoming */
.upcoming-release h3 {
  color: var(--Electric_Blue);
}

/* Album art */
.album img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
}

.note {
  margin-top: 12px;
  opacity: .9;
}

/* =========================
   Listen Section
   ========================= */
#listen {
  background: #0f0f0f;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#listen h2 {
  margin-bottom: 16px;
  color: var(--Crimson_Red);
  text-shadow: 0 0 8px rgba(165,0,0,.25);
  font-size: clamp(26px, 4.5vw, 36px);
}
.spotify-embed {
  max-width: 900px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.55);
}

/* Platform icon row */
.platform-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.platform-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-links a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.8), 0 0 12px rgba(57,255,20,0.6); /* subtle neon glow */
}

.platform-links img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 16px rgba(57,255,20,0.6); }
  100% { box-shadow: 0 0 8px rgba(255,255,255,0.2); }
}

.platform-links a {
  animation: pulseGlow 3s infinite ease-in-out;
}

/* Social Icons */
#socials {
  text-align: center;
  margin: 40px 0;
}

#socials h2 {
  font-family: var(--pirata_one), serif;
  font-size: 28px;
  color: var(--Metallic_Silver);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px var(--Electric_Blue);
}

.social-icons img {
  width: 32px;
  height: 32px;
  
}

/* =========================
   About
   ========================= */
#about h2 {
  margin-bottom: 12px;
  color: var(--Electric_Blue);
  text-shadow: 0 0 8px rgba(0,123,255,.25);
}
#about p { max-width: 900px; margin: .75rem auto; opacity: .95; }

/* =========================
   Forms (optional)
   ========================= */
form {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  margin: 0 auto;
}
form input, form textarea {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid var(--Metallic_Silver);
  background: transparent;
  color: var(--Metallic_Silver);
  border-radius: 6px;
}
form button {
  padding: 12px;
  background: var(--Crimson_Red);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background .2s, transform .15s;
}
form button:hover { background: #8A0000; transform: translateY(-1px); }

/* =========================
   Footer
   ========================= */
footer {
  background: var(--Deep_black);
  color: var(--Dark_Gray);
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-credits a {
  color: var(--Metallic_Silver);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,192,192,0.3);
}

.footer-credits a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(57,255,20,0.6);
  border-bottom-color: var(--Neon_Green);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px){
  .spotify-embed, .youtube-player { margin-left: 16px; margin-right: 16px; }
}
@media (max-width: 600px){
  nav ul { gap: 14px; padding: 12px 10px; }
  nav a { font-size: 16px; letter-spacing: 1.5px; }
  .platform-links a { width: 52px; height: 52px; }
  .platform-links img { width: 26px; height: 26px; }
}

/* =========================
   Print
   ========================= */
@media print {
  body { background-color: #000 !important; color: #fff !important;
    -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  header, section, footer { background-color: #000 !important; color: #fff !important; }
  a { color: var(--Neon_Green) !important; }
  img { max-width: 100% !important; height: auto !important; }
}