/* ============================================================
   WINSLOW — An Evening of the Eagles | style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
  --gold:         #e8b84b;
  --gold-light:   #f5cc6a;
  --gold-dim:     #c49a30;
  --gold-faint:   rgba(220,165,60,0.3);
  --gold-border:  rgba(220,165,60,0.45);
  --bg-main:      #090908;
  --bg-deep:      #050504;
  --bg-card:      #0f0e0b;
  --bg-card-hover:#181610;
  --text-primary: #f5ede0;
  --text-muted:   #ddd0b8;
  --text-faint:   #bfaa88;
  --border-faint: rgba(255,255,255,0.06);
  --font-display: 'Cinzel','Georgia',serif;
  --font-body:    'Raleway','Helvetica Neue',sans-serif;
}

html, body {
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 56px 24px 44px;
  border-bottom: 1px solid rgba(220,165,60,0.15);
}
.site-logo { max-width: 360px; width: 100%; height: auto; display: block; }

/* PHOTO STRIP */
.photo-strip { display: flex; width: 100%; height: 260px; gap: 2px; }
.photo-strip__slot { flex: 1; overflow: hidden; }
.photo-strip__slot img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.photo-strip__slot img:hover { filter: brightness(1.05) saturate(1.1); transform: scale(1.03); }

/* SECTIONS */
.section { padding: 72px 24px; }
.section__inner { max-width: 960px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 6px; color: #d4aa50;
  text-transform: uppercase; display: block; margin-bottom: 16px; text-align: center;
}
.gold-rule { width: 64px; height: 1px; background: var(--gold-border); margin: 0 auto 48px; }

/* MESSAGE */
.message-section { background: var(--bg-main); text-align: center; }
.status-badge {
  display: inline-block; background: #120f00;
  border: 2px solid var(--gold-border); color: var(--gold);
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 6px; text-transform: uppercase; padding: 14px 36px;
  border-radius: 2px; margin-bottom: 44px;
}
.message-body p {
  font-size: 16px; line-height: 2; font-weight: 400; color: var(--text-muted);
  margin-bottom: 18px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.message-body p:last-child { margin-bottom: 0; }
.message-body .site-name { color: var(--gold); font-weight: 600; }
.message-body a {
  color: var(--gold); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid var(--gold-faint); padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.message-body a:hover { color: var(--gold-light); }

/* TOUR */
.tour-section {
  background: var(--bg-deep);
  border-top: 1px solid rgba(220,165,60,0.12);
  border-bottom: 1px solid rgba(220,165,60,0.12);
}
.tour-section h2 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold); text-transform: uppercase; text-align: center; margin-bottom: 8px;
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}

/* SHOW CARD */
.show-card {
  background: var(--bg-card); border: 1px solid rgba(220,165,60,0.2);
  border-radius: 4px; padding: 28px 28px 24px;
  display: flex; flex-direction: column;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative; overflow: hidden;
}
.show-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.show-card:hover { background: var(--bg-card-hover); border-color: rgba(220,165,60,0.45); transform: translateY(-3px); }
.show-card:hover::before { opacity: 1; }

/* POSTPONED / SOLD OUT state */
.show-card.is-postponed { opacity: 0.6; }
.show-card.is-postponed .show-card__ticket-btn {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.15);
  color: #888; cursor: default; pointer-events: none;
}

.show-card__date {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.show-card__venue { font-size: 19px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; }
.show-card__address { font-size: 13px; font-weight: 400; color: var(--text-faint); line-height: 1.7; margin-bottom: 18px; }
.show-card__divider { width: 100%; height: 1px; background: var(--border-faint); margin-bottom: 18px; }
.show-card__showtime {
  font-size: 13px; font-weight: 500; color: var(--text-muted); letter-spacing: 1px;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.show-card__showtime::before {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold-dim); flex-shrink: 0;
}
.show-card__ticket-btn {
  display: inline-block; margin-top: auto; background: transparent;
  border: 1px solid var(--gold-border); color: var(--gold);
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  padding: 13px 20px; border-radius: 2px; text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.show-card__ticket-btn:hover { background: rgba(220,165,60,0.12); border-color: var(--gold); color: var(--gold-light); }

/* VIDEOS */
.video-section { background: var(--bg-main); border-top: 1px solid rgba(220,165,60,0.1); }
.video-section h2 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold); text-transform: uppercase; text-align: center; margin-bottom: 8px;
}
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.video-card { display: flex; flex-direction: column; gap: 14px; }
.video-title {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 3px; color: var(--gold); text-transform: uppercase; text-align: center;
}
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border: 1px solid rgba(220,165,60,0.2); border-radius: 4px; background: #000;
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* CONTACT */
.contact-section { background: var(--bg-main); text-align: center; }
.contact-section h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: 4px; color: var(--gold); text-transform: uppercase; text-align: center; margin-bottom: 8px;
}
.contact-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; margin-bottom: 52px; }
.contact-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-label { font-size: 11px; letter-spacing: 4px; color: #d4aa50; text-transform: uppercase; font-weight: 600; }
.contact-value {
  color: var(--gold); font-size: 16px; font-weight: 500; text-decoration: none;
  border-bottom: 1px solid var(--gold-faint); padding-bottom: 2px; transition: color 0.2s;
}
.contact-value:hover { color: var(--gold-light); }

.social-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px; background: #0f0e0b;
  border: 1px solid rgba(220,165,60,0.35); color: var(--gold);
  padding: 14px 30px; font-family: var(--font-body); font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  border-radius: 2px; text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover { background: rgba(220,165,60,0.08); border-color: var(--gold); color: var(--gold-light); }
.social-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* FOOTER */
.site-footer { background: var(--bg-deep); border-top: 1px solid rgba(220,165,60,0.1); padding: 24px; text-align: center; }
.footer-text { font-size: 13px; color: #c4a870; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .photo-strip { height: 180px; }
  .tour-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .video-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .site-logo { max-width: 280px; }
}
@media (max-width: 500px) {
  .photo-strip { height: 140px; }
  .photo-strip__slot:nth-child(5) { display: none; }
  .message-body p { font-size: 15px; }
  .contact-grid { gap: 32px; }
  .social-btn { padding: 12px 20px; }
}

/* FOOTER SIGNUP LINK */
.footer-signup {
  margin-top: 10px;
}
.footer-signup a {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-faint);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.footer-signup a:hover { color: var(--gold-light); }

/* SIGNUP PAGE */
.signup-section {
  background: var(--bg-main);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signup-card {
  background: var(--bg-card);
  border: 1px solid rgba(220,165,60,0.22);
  border-radius: 4px;
  padding: 52px 48px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.signup-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.signup-card p.signup-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.mc-field-group {
  margin-bottom: 16px;
  text-align: left;
}
.mc-field-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4aa50;
  font-weight: 600;
  margin-bottom: 8px;
}
.mc-field-group input[type="email"],
.mc-field-group input[type="text"] {
  width: 100%;
  background: #0a0908;
  border: 1px solid rgba(220,165,60,0.3);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.mc-field-group input[type="email"]:focus,
.mc-field-group input[type="text"]:focus {
  border-color: var(--gold);
}
.mc-field-group input::placeholder { color: #5a5040; }
.signup-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  background: transparent;
  border: 2px solid var(--gold-border);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.signup-btn:hover {
  background: rgba(220,165,60,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}
.mc-response {
  margin-top: 18px;
  font-size: 14px;
  min-height: 20px;
  color: var(--text-muted);
}
.mc-response.success { color: #7ec88a; }
.mc-response.error   { color: #e27070; }
.back-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }
@media (max-width: 500px) {
  .signup-card { padding: 36px 24px 32px; }
}
