/* ===================================================================
   premiere.css — home page premiere/event block + section headers
   Includes its own responsive (mobile) rules.
   Shared variables/reset live in global.css
   =================================================================== */

/* ── PREMIERE SECTION ── */
.premiere-section {
  background: var(--white);
  padding: 15px 48px 20px;
  text-align: center;
}
.premiere-container {
  max-width: 480px;
  margin: 0 auto;
}
.premiere-block {
  margin-bottom: 48px;
}
.premiere-block:last-child {
  margin-bottom: 0;
}
.premiere-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
.premiere-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #7A2638;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.premiere-subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.premiere-text {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.premiere-detail {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}
.premiere-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--orange);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.premiere-cta:hover {
  background: #f7aa6a;
  transform: translateY(-2px);
}
.story-block {
  background: rgba(245,154,77,0.06);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 480px;
  margin: 0 auto 48px;
}
.story-block .premiere-subheading {
  margin-bottom: 10px;
}
.story-block .premiere-text {
  margin-bottom: 0;
}
.event-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.event-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.event-card-title i {
  font-size: 14px;
  vertical-align: -1px;
  margin-right: 4px;
}
.event-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.event-row:last-of-type {
  margin-bottom: 0;
}
.event-row > i {
  font-size: 18px;
  color: var(--gray);
  margin-top: 2px;
}
.event-primary {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.event-secondary {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 2px 0 0;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  padding: 64px 48px 40px;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* Section title: Montserrat Bold, ALL CAPS */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section-header { padding: 48px 20px 28px; }
  .section-title { font-size: 1.4rem; white-space: nowrap; }
}
