@font-face {
    font-family: 'Andreas';
    src: url('../font/Andreas.woff2') format('woff2'),
        url('../font/Andreas.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Andreas';
    src: url('../font/Andreas.woff2') format('woff2'),
        url('../font/Andreas.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* inconsolata-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 400;
  src: url('../font/inconsolata-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inconsolata-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 800;
  src: url('../font/inconsolata-v37-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  color-scheme: light;
  --black: #15130e;
  --accent: #fbcf1d;
  --accent-low: #e6c029;
  --accent-strong: #d4ad16;
  --accent-very-strong: #9E8216;
  --shadow: 0 24px 60px rgba(27, 43, 42, 0.25);
}

*,*:before,*:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
    font-family: 'Inconsolata', monospace;
    font-size: 18px;
    line-height: 1.2em;
    color: var(--black);
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 50%, var(--accent-strong) 100%);
    min-height: 100vh;
}

h1,h2,h3,h4,p,ul,ol {
	display: block;
	font-size: inherit;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

/* UTIL */
hidden, .hidden {
    display: none !important;
}

* {
  box-sizing: border-box;
}

body {

}

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

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 80px;
  max-width: min(680px, 92vw);
  margin: 0 auto;
  padding: 16px 40px 16px 24px;
  background: var(--black);
  border: 2px solid var(--accent-very-strong);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(21, 19, 14, 0.35);
  position: sticky;
  top: 16px;
  z-index: 8;
  font-family: 'Andreas';
  font-size: 1.6rem;

  .nav-links {
    display: flex;
    gap: 24px;
    text-transform: uppercase;

    color: var(--accent);
  }

  .nav-links:hover {

    a{
      transition: .3s;
    }

    a:hover{
      color: var(--accent-strong);
    }
  }


}

.menu-toggle {
  display: none;;
  position: fixed;
  top: 16px;
  right: 16px;
  padding: 16px 24px;
  font-family: "Andreas", serif;
  color: var(--accent);
  text-transform: uppercase;
  background: var(--black);
  border: 2px solid var(--accent-very-strong);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(21, 19, 14, 0.35);
  z-index: 100;
  cursor: pointer;
}

.logo img {
  width: 60px;
  min-width: 60px;
  height: auto;
  display: block;
  margin-right: 32px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 64px;
  padding: 120px 24px 120px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.badge {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 190px;
  height: 190px;
  background: var(--accent);
  border: 2px solid var(--accent-very-strong);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(21, 19, 14, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
  z-index: 9;
  transition: transform 0.2s linear;
}

.badge .badge-svg {
  position: absolute;
  top: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
}

.badge .badge-svg text {
  text-transform: uppercase;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 1.2rem;
}

.badge .badge-text {
  text-transform: uppercase;
  font-family: "Andreas", serif;
  line-height: 1.2em;
  font-size: 2rem;
  position: relative;
  top: 2px;
}

.badge .badge-text em {
  font-style: normal;
  font-size: 3.2rem;
}

.hero-copy {
  font-weight: bold;
  text-transform: uppercase;
  color: #15130e;
}

.hero h1 {
  font-family: "Andreas", serif;
  font-size: clamp(54px, 7vw, 108px);
  margin: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.logo-mark {
  width: 600px;
  display: block;
  transform: rotate(-4deg);
}

.poster-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  background: var(--black);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 11px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(27, 43, 42, 0.25);
}

.poster-band span {
  padding: 6px 10px;
  border: 1px solid rgba(251, 207, 29, 0.4);
  border-radius: 999px;
}

.hero-actions {
  display: block;
  min-height: 64px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn.primary {
  background: var(--black);
  color: var(--accent);
}

.btn.ghost {
  border-color: var(--black);
  color: var(--black);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.hero-highlights span {
  font-size: 28px;
  font-weight: bold;
  color: var(--black);
}

.hero-highlights p {
  margin: 6px 0 0;
  font-size: 13px;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
}

.hero-stack {
  position: relative;
  height: 420px;
}

.hero-stack .stack-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(27, 43, 42, 0.35);
  border: 6px solid rgba(251, 207, 29, 0.9);
  cursor: pointer;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hero-stack .stack-item:nth-child(1) {
  transform: rotate(-4deg) translate(-8px, 6px);
  z-index: 1;
}

.hero-stack .stack-item:nth-child(2) {
  transform: rotate(2deg) translate(26px, -6px);
  z-index: 2;
}

.hero-stack .stack-item:nth-child(3) {
  transform: rotate(-1deg) translate(12px, 10px);
  z-index: 3;
}

.hero-stack .stack-item:nth-child(4) {
  transform: rotate(3deg) translate(-24px, -4px);
  z-index: 4;
}

.hero-stack::after {
  background-color: var(--accent);
  content: "→";
  font-size: 2rem;
  color: var(--black);
  position: absolute;
  bottom: 24px;
  right: 24px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  z-index: 10;
  box-shadow: 0 0 24px rgba(21, 19, 14, 0.35);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 36px;
}

.section h2 {
  font-family: "Andreas", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.6em;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.section h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--black), var(--accent-strong));
  margin-top: 10px;
}

.card {
  background: rgba(251, 207, 29, 0.7);
  border: 2px solid rgba(21, 19, 14, 0.25);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(21, 19, 14, 0.2);
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;

  p + p {
    margin-top: 24px;
  }
}

.bio-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}

.photo-stack {
  position: relative;
  height: 400px;
}

.photo-stack::after {
  background-color: var(--accent);
  content: "→";
  font-size: 2rem;
  color: var(--black);
  position: absolute;
  bottom: 24px;
  right: 24px;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  z-index: 10;
  box-shadow: 0 0 24px rgba(21, 19, 14, 0.35);
}

.photo-stack .stack-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(27, 43, 42, 0.2);
  border: 4px solid rgba(251, 207, 29, 0.9);
  cursor: pointer;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.photo-stack .stack-item:nth-child(2) {
  transform: rotate(2deg) translate(8px, -6px);
}

.photo-stack .stack-item:nth-child(3) {
  transform: rotate(-3deg) translate(-10px, 8px);
}

.photo-stack.secondary {
  height: 200px;
}

.photo-stack.secondary .stack-item:nth-child(1) {
  transform: rotate(-2.5deg) translate(-6px, 6px);
}

.photo-stack.secondary .stack-item:nth-child(2) {
  transform: rotate(1.5deg) translate(6px, -4px);
}

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

.disc-card {
  padding: 20px 22px;
  border-radius: 10px;
  border: 2px solid var(--accent-very-strong);
  background: var(--accent-low);
}

.disc-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid var(--accent-very-strong);
  margin-bottom: 14px;
  box-shadow: 0 14px 24px rgba(21, 19, 14, 0.2);
}

.disc-card:nth-child(3n + 1) {
  transform: rotate(-1deg);
}

.disc-card:nth-child(3n + 2) {
  transform: rotate(1.1deg);
}

.disc-card:nth-child(3n) {
  transform: rotate(-1deg);
}

.disc-card h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.disc-card p {
  color: var(--black);
}

.live-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(200px, 0.8fr);
  gap: 24px;
}

.live-list {
  display: grid;
  gap: 20px;
}

.live-list ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  color: var(--black);
}

.live-list li {
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid var(--accent-very-strong);
  color: var(--black);
  background: var(--accent-low);
  box-shadow: 0 12px 24px rgba(21, 19, 14, 0.12);
}

.lyrics {
  display: grid;
  gap: 18px;
}

.lyrics-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.lyrics-list button {
  font-family: 'Inconsolata', monospace;
  font-size: 1.2rem;
  font-weight: bold;

  padding: 12px 14px;
  border-radius: 12px;
  border: 2px solid var(--accent-very-strong);
  background: var(--accent-low);
  color: var(--black);

  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  box-shadow: 0 14px 28px rgba(21, 19, 14, 0.2);
  transition: .3s;
}

.lyrics-list button:nth-child(3n + 1) {
  transform: rotate(-2deg);
}

.lyrics-list button:nth-child(3n + 2) {
  transform: rotate(1.5deg);
}

.lyrics-list button:nth-child(3n) {
  transform: rotate(-1deg);
}

.lyrics-list button:hover {
  background: var(--accent);
}

.translation-note {
  color: var(--black);
  margin-top: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease, visibility 0s linear 0s;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 19, 14, 0.7);
  opacity: 0;
  transition: opacity 240ms ease;
}

.modal-panel {
  position: relative;
  width: min(900px, 92vw);
  background: var(--accent);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(21, 19, 14, 0.6);
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: transform 260ms ease, opacity 200ms ease;
}

.modal.open .modal-backdrop {
  opacity: 1;
}

.modal.open .modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  font-size: 1.4rem;
  color: var(--black);
  text-transform: uppercase;
}

.modal-content {
  width: 100%;
  height: min(70vh, 600px);
  overflow: auto;
  background: var(--accent);
  color: var(--black);
  padding: 16px;
  line-height: 1.4em;
  white-space: pre-wrap;
}

.modal-close {
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'Inconsolata', monospace;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal-backdrop,
  .modal-panel {
    transition: none;
  }
}


.presskit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.press-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.press-links a {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(251, 207, 29, 0.55);
  border: 2px solid rgba(21, 19, 14, 0.3);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery img {
  border-radius: 16px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(27, 43, 42, 0.28);
  border: 4px solid rgba(251, 207, 29, 0.9);
  background: rgba(251, 207, 29, 0.8);
}

.gallery img:nth-child(1) {
  transform: rotate(-3deg);
}

.gallery img:nth-child(2) {
  transform: rotate(2deg);
}

.gallery img:nth-child(3) {
  transform: rotate(-1deg);
}

.gallery img:nth-child(4) {
  transform: rotate(3deg);
}

.gallery img:nth-child(5) {
  transform: rotate(-2deg);
}

.gallery img:nth-child(6) {
  transform: rotate(1deg);
}

.footer {
  background: #1c1c18;
  color: #fbcf1d;
  padding: 60px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer a {
  color: #f5e9d4;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .live-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .badge{
    width: 120px;
    height: 120px;
    right: 16px;
    bottom: 16px;
    .badge-text{
      font-size: 1.2rem;
        em {
        font-size: 2rem;
    }
    }
  }
  .nav {
    display: flex;
    position: fixed;
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border:none;
    max-width: none;
    visibility: hidden;
    pointer-events: none;
    border-radius: 0;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
    z-index: 10;

    .nav-links {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 12px;
        background: rgba(251, 207, 29, 0.96);
        position: absolute;
        top: 70px;
        right: 24px;
        padding: 16px 20px;
        border-radius: 0;
        border: 2px solid rgba(21, 19, 14, 0.25);

      position: absolute;
      background-color: var(--black);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      }

  }

  .logo{
    display: none;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 0s;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-stack {
    height: 320px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 180px;
  }
}
