/* ================================
   RESET & CUSTOM PROPERTIES
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:        #FFF9E6;
  --accent:       #2B57A5;
  --accent-deep:  #224684;
  --accent-light: #8AA3CE;
  --black:        #111111;
  --ink:          #1E1E1E;
  --muted:        #5A5A5A;
  --light:        #F2EDD8;
  --white:        #FFFFFF;
  --red:          #C42000;

  --nav-h: 62px;
  --max-w: 1080px;

  --font-display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ================================
   NAV
   ================================ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: var(--cream);
  border-bottom: 3px solid var(--black);
  transition: box-shadow 0.2s ease;
}

#nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 38px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.nav-links a:hover {
  border-bottom-color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--black);
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
}

/* ================================
   HERO
   ================================ */
#hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 460px;
  margin-top: var(--nav-h);
  overflow: hidden;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.6)),
    url('images/hero_pattern.png');
  background-size: auto, 300px auto;
  background-repeat: repeat, repeat;
}

.hero-inner {
  max-width: var(--max-w);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.hero-banner {
  height: 92%;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  object-position: bottom;
  flex-shrink: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: clamp(0.5rem, 3vw, 2rem);
  min-width: 0;
}

.hero-title {
  margin: 0;
}

.hero-title-img {
  width: clamp(260px, 32vw, 620px);
  height: auto;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 0.3em 0.9em;
  border: 2px solid var(--black);
  display: inline-block;
  margin-bottom: 1.2rem;
}

/* ================================
   SHARED SECTION STYLES
   ================================ */
section {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.5rem);
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 4px;
  background: var(--accent);
  min-width: 2rem;
}

.section-heading--left::after {
  display: none;
}

/* ================================
   MUSIC
   ================================ */
#music {
  background: var(--cream);
}

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

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 3px solid var(--black);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Release cards */
.releases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.release-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 3px solid var(--black);
  padding: 1.25rem;
}

.release-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.release-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--black);
  margin-bottom: 1rem;
}

.release-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.release-info h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.release-meta {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.75rem 2.1rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--black);
  clip-path: polygon(100% 20%, 100% 80%, 60% 100%, 0% 70%, 0% 30%, 60% 0%);
  transform: rotate(-15deg);
  transition: background 0.12s, filter 0.12s, transform 0.1s;
}

.btn:hover {
  background: var(--accent-deep);
  filter: drop-shadow(3px 3px 0 var(--black));
  transform: rotate(-15deg) translate(-1px, -1px);
}

/* ================================
   ABOUT
   ================================ */
#about {
  background-color: var(--light);
  background-image: url('images/about_pattern.png');
  background-size: 420px auto;
  background-repeat: repeat;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
}

.about-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--black);
}

.about-copy {
  background: var(--cream);
  border: 3px solid var(--black);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* ================================
   CONTACT
   ================================ */
#contact {
  background: var(--ink);
}

#contact .section-heading {
  color: var(--white);
}

#contact .section-heading::after {
  background: var(--accent);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.4rem;
  color: var(--white);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s, box-shadow 0.1s;
}

.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.15);
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.8rem;
  line-height: 1.8;
}

footer a {
  color: var(--accent-light);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 680px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--black);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    border-bottom: none;
  }

  .hero-title-img {
    width: clamp(220px, 60vw, 380px);
  }

  .hero-inner {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
  }

  .hero-banner {
    height: auto;
    max-width: 80%;
    max-height: 45%;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    height: 300px;
  }
}

@media (max-width: 400px) {
  section {
    padding: 2.5rem 1rem;
  }
}
