/* Tuesday Club Studios - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --gold: #c8a96e;
  --gold-light: #e8d5a3;
  --dark-bg: #111111;
  --mid-bg: #222222;
  --text-light: #cccccc;
  --text-muted: #888888;
}

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

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

/* ===== NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo-link img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 4px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--dark-bg);
  padding: 16px 24px;
  border-top: 1px solid rgba(200,169,110,0.2);
}
.mobile-menu a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: block; }

/* ===== HERO ===== */
.hero {
  background: var(--dark-bg);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ===== SECTIONS ===== */
.section {
  margin-bottom: 64px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--black);
}

.section p {
  margin-bottom: 16px;
  color: #333;
  font-size: 1rem;
}

/* ===== ASSOCIATION LOGOS ===== */
.association-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  text-align: center;
  background: var(--dark-bg);
  padding: 40px 24px;
  color: var(--white);
}

.association-row h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.association-row img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.association-row em {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  font-style: italic;
}

/* ===== FILM BANNER ===== */
.film-banner {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
  margin-bottom: 48px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin-bottom: 48px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

/* ===== VIDEO EMBED ===== */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--dark-bg);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ===== CAST CARDS ===== */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

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

.cast-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
  filter: grayscale(10%);
}

.cast-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cast-card p {
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
  line-height: 1.5;
}

/* ===== EXTRAS GRID ===== */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.extra-card { text-align: center; }
.extra-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}
.extra-card span {
  font-size: 0.85rem;
  color: #444;
}

/* ===== SPONSOR CARDS ===== */
.sponsor-card {
  background: #f9f9f9;
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 28px;
  border-radius: 0 4px 4px 0;
}
.sponsor-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.sponsor-card p { font-size: 0.95rem; color: #444; }
.sponsor-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
}
.sponsor-card a:hover { color: var(--black); border-color: var(--black); }

/* ===== SPONSOR IMG ===== */
.sponsor-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 16px 0;
  border-radius: 4px;
}

/* ===== PROGRESS ===== */
.progress-list {
  list-style: none;
  padding: 0;
}
.progress-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.progress-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: var(--dark-bg);
  color: var(--white);
  padding: 48px 32px;
  text-align: center;
  margin: 48px 0;
  border-radius: 4px;
}
.cta-block h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 16px;
  border-bottom: none;
  display: block;
  font-size: 1.8rem;
}
.cta-block p { color: var(--text-light); margin-bottom: 24px; }
.cta-block a {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 12px 32px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.cta-block a:hover { background: var(--gold-light); }

/* ===== CONTACT FORM ===== */
.contact-section {
  background: #f5f5f5;
  padding: 48px 32px;
  border-radius: 4px;
  margin-top: 48px;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
  display: inline-block;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  background: white;
  transition: border-color 0.2s;
}

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-checkbox input { width: auto; flex-shrink: 0; margin-top: 4px; }
.form-checkbox label { font-size: 0.85rem; color: #555; text-transform: none; letter-spacing: 0; }

.btn-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--gold); color: var(--black); }

.form-msg {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  display: none;
  font-size: 0.9rem;
}
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-msg.error { background: #fce4e4; color: #c62828; border: 1px solid #f5c6c6; }

/* ===== SOCIAL FOOTER ===== */
footer {
  background: var(--dark-bg);
  color: var(--text-muted);
  text-align: center;
  padding: 40px 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.social-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--gold); }

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== PAGE NAV LINKS ===== */
.page-links {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.page-links h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
}
.page-links ul {
  list-style: none;
  columns: 2;
  gap: 8px;
}
.page-links ul li { margin-bottom: 6px; }
.page-links ul a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
}
.page-links ul a:hover { text-decoration: underline; }

/* ===== FULL WIDTH IMG ===== */
.full-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 32px;
  border-radius: 4px;
}

/* ===== INLINE IMG ===== */
.inline-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 4px;
  margin: 16px 0;
}

/* ===== PREMIERE BLOCK ===== */
.premiere-block {
  background: var(--black);
  color: var(--gold);
  text-align: center;
  padding: 40px 24px;
  margin: 40px 0;
  border: 2px solid var(--gold);
}
.premiere-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.4;
  border-bottom: none;
  display: block;
  color: var(--gold);
}
.premiere-block a {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 28px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.premiere-block a:hover { background: var(--gold); color: var(--black); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .cast-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-links ul { columns: 1; }
}
