/* ============================================================
   WINSLOW — An Evening of the Eagles | Maintenance Page
   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:    #a89878;
  --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;
  position: relative;
}

.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);
}

/* SECTION COMMON */
.section {
  padding: 72px 24px;
}

.section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold-dim);
  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 SECTION */
.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);
  border-color: rgba(245,204,106,0.6);
}

/* TOUR DATES */
.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-fit, 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;
  gap: 0;
  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;
}

.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: 20px;
  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);
}

/* CONTACT SECTION */
.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: var(--gold-dim);
  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, border-color 0.2s;
}

.contact-value:hover {
  color: var(--gold-light);
}

.fans-label {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-dim);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.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 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; }
  .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; }
}

/* VIDEO SECTION */
.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%;
}

@media (max-width: 500px) {
  .video-grid { grid-template-columns: 1fr; }
}