/* ============================================================
   NDA — Base CSS
   Palette: #1d2e49 (bg) | #c07e59 (orange) | #f8b25a (yellow) | #ffffe6 (cream)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Special+Elite&family=Barlow+Condensed:wght@300;400;600;700&display=swap');

:root {
  --bg:           #1d2e49;
  --bg-light:     #253a5e;
  --orange:       #c07e59;
  --yellow:       #f8b25a;
  --cream:        #ffffe6;
  --cream-dim:    rgba(255, 255, 230, 0.7);
  --dark:         #111820;

  --font-title:   'Bebas Neue', 'Impact', sans-serif;
  --font-rough:   'Special Elite', 'Courier New', monospace;
  --font-body:    'Barlow Condensed', 'Helvetica Neue', sans-serif;

  --border-punk:  2px solid var(--orange);
  --shadow-punk:  3px 3px 0 var(--yellow);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

/* Grain overlay — photocopied flyer effect */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/static/img/noise.png');
  background-repeat: repeat;
  background-size: 128px 128px;
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 9999;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--cream);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--yellow); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }

p { margin-bottom: 1rem; }

a {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: var(--orange); }

strong { color: var(--yellow); }

/* ---- Utility ---- */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: var(--border-punk);
  display: inline-block;
}

.section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.btn-punk {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.6rem;
  border: var(--border-punk);
  box-shadow: var(--shadow-punk);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: transform 0.1s steps(2), box-shadow 0.1s steps(2);
  text-transform: uppercase;
}

.btn-punk:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--yellow);
  color: var(--yellow);
}

.btn-punk:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--yellow);
}

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--dark);
  border-bottom: 2px solid var(--orange);
  padding: 0.75rem 1.5rem;
}

.site-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-nav__logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: cover;
  transition: border-color 0.15s, transform 0.15s;
}

.site-nav__logo:hover img {
  border-color: var(--yellow);
  transform: rotate(-3deg);
}

.site-nav__brand {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 0.1em;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav__links a {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.1s;
  position: relative;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a.active {
  color: var(--yellow);
}

.site-nav__links a:hover::after,
.site-nav__links a.active::after {
  width: 100%;
}

.site-nav__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav__social a {
  color: var(--cream-dim);
  font-size: 1.1rem;
  transition: color 0.1s;
}

.site-nav__social a:hover { color: var(--yellow); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-size: 1.5rem;
  padding: 0.25rem;
}

/* ---- Footer ---- */
.site-footer {
  background-color: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 2.5rem 1.5rem;
  margin-top: 4rem;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer__social {
  display: flex;
  gap: 1.5rem;
}

.site-footer__social a {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__streaming {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__streaming a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__streaming .streaming-link__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.site-footer__booking {
  font-family: var(--font-rough);
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.site-footer__booking a {
  color: var(--orange);
}

.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 230, 0.3);
  font-family: var(--font-rough);
}

/* ---- Messages ---- */
.messages {
  list-style: none;
  max-width: 1100px;
  margin: 1rem auto;
  padding: 0 1.5rem;
}

.messages li {
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--orange);
  background: rgba(192, 126, 89, 0.1);
  font-family: var(--font-rough);
  margin-bottom: 0.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .site-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 2px solid var(--orange);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .site-nav__links.open { display: flex; }

  .nav-toggle { display: block; }

  .site-nav__social { display: none; }

  .section { padding: 2.5rem 1rem; }
}
