@import url('https://fonts.googleapis.com/css2?family=Mr+De+Haviland&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #2f2c2a;
  --color-bg-dark: #1f1d1c;
  --color-white: #f7f5f2;
  --color-white-soft: rgba(247, 245, 242, 0.65);
  --color-white-faint: rgba(247, 245, 242, 0.25);
  --color-accent-pink: #97205f;
  --font-script: 'Mr De Haviland', cursive;
  --font-body: 'Quicksand', sans-serif;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Decorative flourishes */
.flourish {
  position: absolute;
  width: auto;
  height: 260px;
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}

.flourish--top-left {
  top: 0;
  left: 0;
}

.flourish--top-right {
  top: 0;
  right: 0;
}

.flourish--bottom-left {
  bottom: 0;
  left: 0;
}

.flourish--bottom-right {
  bottom: 0;
  right: 0;
}

.divider {
  width: 100%;
  max-width: 320px;
  margin: 32px auto;
  opacity: 0.7;
  display: block;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-white-faint);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 64px;
  width: 64px;
  object-fit: contain;
}

.nav-brand span {
  font-family: var(--font-script);
  font-size: 2.6rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--color-accent-pink);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: all 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 90px 24px 70px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Stage.jpg') center calc(55% - 1.5in) / cover no-repeat;
  filter: brightness(0.85) saturate(0.9);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 25% 20%, rgba(247, 245, 242, 0.08), transparent 65%),
    radial-gradient(ellipse 55% 40% at 75% 75%, rgba(247, 245, 242, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(31, 29, 28, 0.4), rgba(31, 29, 28, 0.55));
  z-index: -1;
}

.hero-title,
.hero-subtitle,
.hero-tagline,
.hero-slogan {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.85);
}

.hero-logo {
  max-width: 260px;
  margin: 0 auto 12px;
  border-radius: 12px;
  transform: translateY(-1in);
}

.hero-title {
  font-family: var(--font-script);
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 4px;
  transform: translateY(-1in);
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 24px;
  transform: translateY(-1in);
}

.hero-tagline {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: justify;
  text-align-last: center;
  transform: translateY(-1in);
}

.hero-slogan {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent-pink);
  -webkit-text-stroke: 0.75px var(--color-accent-pink);
  margin-bottom: 16px;
  transform: translateY(-1in);
}

/* Genre pills */
.genre-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  max-width: 800px;
  margin: 0 auto 40px;
  transform: translateY(0.5in);
}

.genre-btn {
  font-family: var(--font-body);
  background: #3a3632;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.genre-btn:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

/* Buttons */
.btn-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(0.5in);
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  border: 1px solid var(--color-white);
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

/* Section generic */
.section {
  position: relative;
  padding: 70px 24px;
}

.section-title {
  font-family: var(--font-script);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-white-soft);
  max-width: 560px;
  margin: 0 auto 20px;
}

.bio-content {
  max-width: 720px;
  margin: 40px auto 0;
}

.bio-content p {
  margin-bottom: 24px;
  color: var(--color-white-soft);
  line-height: 1.8;
}

.bio-content em {
  font-style: italic;
  color: var(--color-white);
}

/* About / bio section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid img {
  border-radius: 12px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--color-white-faint);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item--shift-center img {
  object-position: center calc(50% + 8cm - 2in);
}

.gallery-item--shift-third img {
  object-position: center calc(50% + 8cm - 2in);
}

.gallery-placeholder {
  text-align: center;
  color: var(--color-white-faint);
  font-size: 0.85rem;
  padding: 20px;
}

.gallery-placeholder svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  opacity: 0.5;
}

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

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--color-white);
  cursor: pointer;
  background: none;
  border: none;
}

.video-lightbox-frame {
  position: relative;
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
  display: none;
}

.video-lightbox-frame.active {
  display: block;
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-picker {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: min(90vw, 720px);
  max-height: 80vh;
  overflow-y: auto;
}

.video-picker.active {
  display: flex;
}

.video-picker-thumb {
  position: relative;
  width: 200px;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--color-white-faint);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--color-bg-dark);
  transition: border-color 0.2s ease;
}

.video-picker-thumb:hover {
  border-color: var(--color-white);
}

.video-picker-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-picker-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-script);
  font-size: 2rem;
  margin-bottom: 16px;
}

.accent-pink {
  color: var(--color-accent-pink);
}

.contact-info p {
  color: var(--color-white-soft);
  margin-bottom: 20px;
}

.contact-detail {
  margin-bottom: 18px;
}

.contact-detail span {
  display: block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-white-faint);
  margin-bottom: 4px;
}

.social-row {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-white-faint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-row a:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white-soft);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-white-faint);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 4px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-white-faint);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 36px 24px;
  border-top: 1px solid var(--color-white-faint);
  color: var(--color-white-faint);
  font-size: 0.85rem;
}

.site-footer .divider {
  max-width: 200px;
  opacity: 0.5;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-brand img {
    height: 48px;
    width: 48px;
  }

  .nav-brand span {
    font-size: 1.9rem;
  }

  .nav-links {
    gap: 20px;
    font-size: 0.75rem;
  }
}

@media (max-width: 800px) {
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-slogan {
    font-size: 1.5rem;
  }

  .hero-title,
  .hero-subtitle,
  .hero-tagline,
  .hero-slogan,
  .hero-logo {
    transform: translateY(-0.5in);
  }

  .genre-list,
  .btn-row {
    transform: translateY(0.25in);
  }

  .flourish {
    width: auto;
    height: 180px;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 10px 16px;
  }

  .nav-brand img {
    height: 40px;
    width: 40px;
  }

  .nav-brand span {
    font-size: 1.5rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--color-white-faint);
    display: none;
  }

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

  .nav-toggle {
    display: block;
  }

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

  .hero {
    min-height: auto;
    padding: 50px 20px 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-slogan {
    font-size: 1.3rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-title,
  .hero-subtitle,
  .hero-tagline,
  .hero-slogan,
  .hero-logo {
    transform: translateY(-0.2in);
  }

  .genre-list,
  .btn-row {
    transform: translateY(0.1in);
  }

  .genre-list {
    gap: 8px;
  }

  .genre-btn {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .flourish {
    width: auto;
    height: 110px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .contact-wrap {
    gap: 32px;
  }
}

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

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-slogan {
    font-size: 1.15rem;
  }
}
