@font-face {
  font-family: "Mouldy Cheese";
  src: url("../assets/fonts/Mouldy Cheese.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #EC5C96;
  --pink-dark: #C43D75;
  --teal: #2FC4C4;
  --yellow: #F5DD90;
  --black: #1A1A1A;
  --cream: #FFF8EF;
  --white: #FFFFFF;

  --font-display: "Mouldy Cheese", cursive;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--cream);
}

h1, h2, h3, .brand-logo + .brand, nav a, .btn, .eyebrow {
  font-family: var(--font-display);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 3px solid var(--black);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo {
  height: 56px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--black);
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--pink-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--cream) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 180px;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.15));
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin: 0;
  color: var(--black);
  line-height: 1;
}

.hero-tagline {
  font-size: 1.25rem;
  max-width: 520px;
  margin: 18px auto 0;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  z-index: 1;
}

.hero-blob-pink {
  width: 260px;
  height: 260px;
  background: var(--pink);
  top: -80px;
  left: -80px;
}

.hero-blob-teal {
  width: 220px;
  height: 220px;
  background: var(--teal);
  bottom: -100px;
  right: -60px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 1.1rem;
  text-decoration: none;
  border: 3px solid var(--black);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--black);
}

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

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

/* Eyebrow / section titles */
.eyebrow {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.center { display: block; text-align: center; margin: 0 auto; width: fit-content; }

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin: 10px 0 36px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
}

/* Next show */
.next-show {
  padding: 70px 0;
}

.next-show-card {
  background: var(--teal);
  border: 3px solid var(--black);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  max-width: 720px;
}

.next-show-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.next-show-card p {
  max-width: 480px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

/* Showcase gallery */
.showcase {
  padding: 70px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gallery-btn {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-btn:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  border: 3px solid var(--white);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.95rem;
  opacity: 0.75;
}

.gallery-note code {
  background: rgba(0,0,0,0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Team */
.team {
  padding: 70px 0 100px;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 26px;
  margin-top: 10px;
}

.team-card {
  text-align: center;
}

.avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
  overflow: hidden;
  transition: transform 0.15s ease;
}

.avatar:hover {
  transform: scale(1.06);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card:nth-child(3n+2) .avatar { background: var(--teal); }
.team-card:nth-child(3n) .avatar { background: var(--yellow); }

.team-card h3 {
  margin: 0 0 2px;
  font-size: 1.3rem;
}

.team-card p {
  margin: 0;
  font-style: italic;
  opacity: 0.75;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--cream);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: 44px;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--yellow);
  text-decoration: none;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
  width: 100%;
  text-align: center;
  order: 3;
}

/* Responsive */
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--black);
    padding: 16px 24px;
    gap: 16px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}
