/* ── Rough Trade The Musical — shared styles ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@300;400;600&family=Dancing+Script:wght@700&display=swap');

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

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --card:    #181818;
  --cyan:    #4af0f0;
  --pink:    #e040fb;
  --magenta: #ff2d9b;
  --purple:  #8b2fc9;
  --white:   #f0f0f0;
  --grey:    #999;
  --border:  rgba(74,240,240,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  transition: height 0.3s ease;
}

.nav-logo {
  height: 100px;
  width: auto;
  padding: 8px 0;
  transition: height 0.3s ease, padding 0.3s ease;
}

nav.scrolled .nav-inner {
  height: 100px;
}

nav.scrolled .nav-logo {
  height: 80px;
  padding: 6px 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  display: block;
  padding: 0.35rem 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--cyan); }

.nav-links a.active { border-bottom: 2px solid var(--cyan); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ── Page sections ── */
.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92vh;
  text-align: center;
  overflow: hidden;
  padding: 4rem 2rem;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,47,201,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/rt.jpg');
  background-size: cover;
  background-position: center top;
  filter: grayscale(30%) brightness(0.35);
}

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

.hero-logo {
  max-width: 560px;
  width: 90%;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 24px rgba(74,240,240,0.4));
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

/* ── Announcement strip ── */
.announcement {
  background: linear-gradient(90deg, var(--purple), var(--magenta), var(--purple));
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:hover {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 0 0 18px rgba(74,240,240,0.5);
}
.btn-pink {
  border-color: var(--pink);
  color: var(--pink);
}
.btn-pink:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 18px rgba(224,64,251,0.5);
}

/* ── Section wrapper ── */
.section {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-full {
  background: var(--dark);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  margin: 1.2rem 0 2rem;
}

/* ── Page header (for sub-pages) ── */
.page-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-header h1 span { color: var(--cyan); }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(74,240,240,0.1);
}

.card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}

.card-role {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
}

.card p {
  color: #bbb;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Song list ── */
.act-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 3rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.act-title:first-child { margin-top: 0; }

.song-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.song-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  color: var(--grey);
  min-width: 28px;
  text-align: right;
}

.song-info { flex: 1; }

.song-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.song-by {
  font-size: 0.78rem;
  color: var(--cyan);
  margin-top: 0.1rem;
}

.song-player {
  width: 220px;
  flex-shrink: 0;
}

.song-player audio {
  width: 100%;
  height: 30px;
  filter: invert(1) hue-rotate(160deg) brightness(0.8);
}

/* ── News items ── */
.news-list { display: flex; flex-direction: column; gap: 2.5rem; }

.news-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-left: 4px solid var(--cyan);
}

.news-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.news-item p { color: #bbb; font-size: 0.92rem; }

.news-item a {
  color: var(--cyan);
  text-decoration: none;
}
.news-item a:hover { text-decoration: underline; }

/* ── Artist statement ── */
.statement-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.9;
  color: #ccc;
  max-width: 100%;
  border-left: 4px solid var(--pink);
  padding-left: 2rem;
}

.statement-sig {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--cyan);
  margin-top: 2rem;
}

/* ── Rock n Roll / media section ── */
.rock-track {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.rock-track-info { flex: 1; min-width: 200px; }

.rock-track-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.rock-track-by {
  font-size: 0.8rem;
  color: var(--cyan);
  margin-top: 0.25rem;
}

.rock-track audio {
  width: 300px;
  max-width: 100%;
}

/* ── Contact form ── */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(74,240,240,0.15);
}

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

/* ── Triangle logo decoration ── */
.triangle-deco {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.triangle-deco svg { opacity: 0.15; }

/* ── Synopsis video ── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

/* ── Neon banner strip (white bg with cyan outline text) ── */
.neon-banner {
  background: #fff;
  padding: 0.5rem 0;
  text-align: center;
}
.neon-banner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Photo gallery / image grids ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.photo-grid img,
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-frame {
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
}

.photo-frame.square { aspect-ratio: 1 / 1; }
.photo-frame.wide   { aspect-ratio: 16 / 9; }
.photo-frame.tall   { aspect-ratio: 3 / 4; }
.photo-frame.natural img { height: auto; object-fit: unset; }

.photo-caption {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── Full-width photo hero banner ── */
.photo-hero {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}
.photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Two-col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

@media (max-width: 640px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ── Footer ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
}

footer .footer-logo {
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(74,240,240,0.3));
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0.75rem 0;
}

footer .footer-links a {
  color: var(--grey);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

footer .footer-links a:hover { color: var(--cyan); }

footer .footer-copy {
  font-size: 0.78rem;
  color: #555;
  margin-top: 0.75rem;
}

footer .footer-copy a { color: var(--grey); text-decoration: none; }

/* ── Brochure strip ── */
.brochure-strip {
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.brochure-img {
  height: 140px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.brochure-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.brochure-text p { color: #aaa; font-size: 0.9rem; margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .nav-inner { flex-wrap: wrap; height: auto; padding: 1rem 0; }
  .nav-links { width: 100%; }

  .song-player { width: 100%; }
  .rock-track audio { width: 100%; }
  .brochure-img { height: 80px; }
}
