/* ---------- THEME VARIABLES ---------- */
:root {
  --title-font:'Metal Mania',cursive; 
  --bg-main: #0d0d0d;
  /* page background      */
  --bg-section: #131313;
  /* strips / sections    */
  --bg-header: #000;
  --txt-main: #eeeeee;
  --txt-muted: #b0b0b0;
  --accent: #e50914;
  --copy-font:'Montserrat',sans-serif;
  /* deep red highlight   */
}

/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- TYPOGRAPHY ---------- */
body {
  font-family:var(--copy-font);
  background: var(--bg-main);
  color: var(--txt-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family:var(--title-font);
  letter-spacing: .05em;
  color: var(--txt-main);
  margin-bottom: .5em;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--txt-muted);
}

/* ---------- HEADER / NAV ---------- */
header {
  background: var(--bg-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: .75rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .6);
}

header h1 {
  font-size: 1.8rem;
  margin: 0;
}

ul {
  list-style: none;
}

nav ul {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin-right: 1.25rem;
  white-space: nowrap;
}

nav a {
  display: block;
  padding: .25rem 0;
  color: var(--txt-main);
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s;
}

nav a:hover,
nav a:focus {
  color: var(--accent);
}

/* ---------- SECTIONS ---------- */
section {
  padding: 4rem 1.25rem;
  background: var(--bg-section);
}

section:nth-of-type(even) {
  background: var(--bg-main);
}

/* subtle striping */

/* Home tagline */
#home p {
  font-style: italic;
  color: var(--accent);
}

/* ---------- IMAGE GALLERIES ---------- */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.image-gallery img {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  transition: transform .3s, box-shadow .3s;
}

.image-gallery img:hover {
  transform: scale(1.06);
  box-shadow: 0 0 12px rgba(229, 9, 20, .45);
}

/* ---------- ALBUM BLOCK ---------- */
.album-release {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.album-release img {
  max-width: 280px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .7);
}

.platform-links a {
  font-family:var(--title-font);
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  transition: opacity .25s;
}

.platform-links a:hover {
  opacity: .75;
}

/* ---------- CONTACT & SOCIAL ---------- */
.contact-info {
  text-align: center;
}

.social-media-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-media-links img {
  width: 38px;
  height: 38px;
  filter: grayscale(1);
  transition: filter .3s, transform .3s;
}

.social-media-links img:hover {
  filter: none;
  transform: scale(1.15);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-header);
  text-align: center;
  padding: 1rem 0;
  color: var(--txt-muted);
  font-size: .875rem;
}

.nav-toggle{
  display:none;                /* desktop hidden */
  background:none;border:none;outline:none;
  cursor:pointer;z-index:1100; /* keep above overlay */
}
.nav-toggle .bar{
  display:block;width:26px;height:3px;
  margin:5px 0;background:var(--txt-main);
  transition:all .3s;
}

/* rotate bars when menu open */
#mainNav.open ~ .nav-toggle .bar:nth-child(1){transform:translateY(8px) rotate(45deg);}
#mainNav.open ~ .nav-toggle .bar:nth-child(2){opacity:0;}
#mainNav.open ~ .nav-toggle .bar:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

/* ---------- MOBILE TWEAKS ---------- */
@media(max-width:768px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  nav a {
    font-size: .8rem;
    padding: .3rem;
  }

  .nav-toggle {
    display: block;
  }

  /* show burger   */

  #mainNav ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 220px;
    padding-top: 80px;
    /* clear header        */
    background: var(--bg-header);
    transform: translateX(100%);
    /* off‑canvas default  */
    transition: transform .35s;
  }

  #mainNav.open ul {
    transform: translateX(0);
  }

  /* slide in      */

  nav li {
    margin: 1rem 0;
    text-align: right;
  }

  nav a {
    font-size: 1rem;
    padding: .5rem 1.5rem;
  }
}