/* ============================================
   ABOUT PAGE STYLES
   Fonts: Playfair Display (headings), Cinzel (nav links), Inter (body), Jost (labels)
============================================ */

/* ── Section 1: About Intro ──
   BG: dual radial gradient
   Left: Playfair heading + quick links
   Right: Inter body copy */
.about-intro {
  position: relative;
  background:
    radial-gradient(40% 60% at 75% 40%, rgba(201,150,42,0.08) 0%, rgba(201,150,42,0) 60%),
    radial-gradient(60% 80% at 30% 40%, rgba(180,60,0,0.18) 0%, rgba(180,60,0,0) 70%),
    #0E0600;
  padding: 90px 0 100px;
  overflow: hidden;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 120px;
  align-items: start;
}

/* LEFT col */
.about-intro-left {}

/* Heading: Playfair Display 700 46px / #F0D5A0
   Second line italic */
.about-intro-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  line-height: 54px;
  color: #F0D5A0;
  margin-bottom: 40px;
}
.about-intro-heading em {
  font-style: italic;
  color: #D45000;
  display: block;
}

/* Quick links list */
.about-quick-links {
  list-style: none;
  margin-bottom: 48px;
}
.about-quick-links li {
  box-sizing: border-box;
  border-top: 1px solid rgba(201,150,42,0.18);
  border-bottom: 1px solid rgba(201,150,42,0.18);
  margin-bottom: -1px; /* overlap borders */
}
.about-quick-links li a {
  display: flex;
  align-items: center;
  height: 53px;
  gap: 0;
  text-decoration: none;
  transition: background .2s ease;
}
.about-quick-links li a:hover { background: rgba(201,150,42,0.05); }

/* Gold dash before link */
.about-quick-links li a::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, #C9962A 0%, #D45000 100%);
  flex-shrink: 0;
  margin-right: 14px;
}

/* Link text: Cinzel 400 11px / 2.42px tracking / #E5C38C */
.about-quick-links li a span {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  color: #E5C38C;
}

/* Submit Nomination button */
.about-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  padding: 0 48px;
  background: linear-gradient(99.53deg, #8B1A00 0%, #B22800 50%, #D45000 100%);
  border: 1px solid #C9962A;
  text-decoration: none;
  transition: filter .25s ease, transform .25s ease;
}
.about-submit-btn:hover { filter: brightness(1.15); transform: translateY(-2px); }
.about-submit-btn span {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  color: #F5D98A;
}

/* RIGHT col: body copy */
.about-intro-right {}

/* Body: Inter 300 15px / 29px / rgba(229,195,140,0.62) */
.about-body-copy {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  color: rgba(229,195,140,0.62);
  margin-bottom: 24px;
}

/* Highlighted words: Inter 500 #E8B84B */
.about-body-copy strong,
.about-highlight {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #E8B84B;
}

/* Brand name highlight */
.about-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #E8B84B;
}

/* ── Section 2: About Content (dark)
   BG: #0E0600 + radial overlay
   Same 2-col layout but full width */
.about-content-section {
  position: relative;
  background: #0E0600;
  border-top: 0.5px solid rgba(201,150,42,0.15);
  border-bottom: 0.5px solid rgba(201,150,42,0.15);
  padding: 90px 0 100px;
  overflow: hidden;
}
.about-content-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 50% 50%, rgba(20,8,0,0.55) 0%, rgba(20,8,0,0.2) 100%);
  pointer-events: none;
  z-index: 0;
}
.about-content-section .container { position: relative; z-index: 1; }

/* Section heading: Playfair Display 700 64px */
.about-section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  line-height: 70.4px;
  letter-spacing: 0;
  color: #F0D5A0;
  margin-bottom: 8px;
}
.about-section-heading em {
  font-style: italic;
  color: #D45000;
}

/* Eyebrow above heading */
.about-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9962A;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, #C9962A, #D45000);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .about-intro-grid { grid-template-columns: 360px 1fr; gap: 80px; }
  .about-intro-heading { font-size: 40px; line-height: 48px; }
  .about-section-heading { font-size: 52px; line-height: 58px; }
}
@media (max-width: 991px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-intro-heading { font-size: 36px; line-height: 44px; }
  .about-section-heading { font-size: 42px; line-height: 50px; }
  .about-page-hero { height: 180px; }
}
@media (max-width: 768px) {
  .about-intro { padding: 60px 0 70px; }
  .about-intro-heading { font-size: 30px; line-height: 38px; }
  .about-section-heading { font-size: 34px; line-height: 42px; }
}
@media (max-width: 480px) {
  .about-intro-heading { font-size: 26px; line-height: 33px; }
  .about-section-heading { font-size: 28px; line-height: 35px; }
  .about-submit-btn { width: 100%; }
}


/* ══════════════════════════════════════
   PAGE HERO BANNER — exact Figma spec
   - Photo bg darkened
   - Left: radial orange/warm glow
   - Bottom-left: eyebrow + heading
   - Bottom border: thick center, thin ends (lens flare style)
   - Heading: Playfair Display 700 / 700 Italic gold
   - Sits directly below fixed 110px header
══════════════════════════════════════ */
.page-hero-banner {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-top: 110px;
  display: flex;
  align-items: flex-end;
}

/* Photo background */
.page-hero-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../img/inner-banner-bg.jpg') center 35% / cover no-repeat;
  filter: brightness(0.55) saturate(0.9);
  z-index: 0;
}

/* Radial gradient overlays matching Figma section bg spec */
.page-hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Subtle gold shimmer top-right to match stage lighting */
    radial-gradient(40% 50% at 80% 20%, rgba(201,150,42,0.12) 0%, transparent 60%),
    /* Left dark vignette so text is readable */
    linear-gradient(100deg,
      rgba(5,2,0,0.82) 0%,
      rgba(5,2,0,0.55) 30%,
      rgba(5,2,0,0.2) 55%,
      transparent 75%
    ),
    /* Bottom dark fade */
    linear-gradient(180deg,
      transparent 20%,
      rgba(5,2,0,0.55) 70%,
      rgba(5,2,0,0.92) 100%
    );
  z-index: 1;
}

/* Bottom border — thick in center, fades to thin at edges (lens flare) */
.page-hero-banner-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201,150,42,0.3) 8%,
    rgba(231,173,63,0.7) 20%,
    rgba(254,235,148,1) 38%,
    rgba(254,235,148,1) 50%,
    rgba(254,235,148,1) 62%,
    rgba(231,173,63,0.7) 80%,
    rgba(201,150,42,0.3) 92%,
    transparent 100%
  );
  /* Taper height: thick center, thin edges */
  -webkit-mask: radial-gradient(ellipse 60% 100% at 50% 100%, black 60%, transparent 100%);
  mask: radial-gradient(ellipse 60% 100% at 50% 100%, black 60%, transparent 100%);
  z-index: 3;
}

/* Extra glow under the border */
.page-hero-banner-border::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 15%;
  right: 15%;
  height: 8px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,150,42,0.35) 0%, transparent 100%);
}

/* Content: bottom-left */

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px 32px;
}
/* Eyebrow */
.banner-eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(231,173,63,0.75);
  margin-bottom: 8px;
}

/* Heading: "About" bold white + "Mecam Awards" bold italic gold */
.banner-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: normal;
  font-size: 52px;
  line-height: 58px;
  letter-spacing: 0;
  color: #FFFFFF;
  margin: 0;
}
.banner-heading em {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 52px;
  line-height: 58px;
  background: linear-gradient(90deg, #FEEB94 0%, #E7AD3F 55%, #C9962A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .page-hero-banner { height: 250px; }
  .banner-heading { font-size: 44px; line-height: 50px; }
  .banner-heading em { font-size: 44px; line-height: 50px; }
}
@media (max-width: 991px) {
  .page-hero-banner { height: 220px; margin-top: 80px; }
  .banner-content { padding: 0 36px 26px; }
  .banner-heading { font-size: 36px; line-height: 42px; }
  .banner-heading em { font-size: 36px; line-height: 42px; }
}
@media (max-width: 768px) {
  .page-hero-banner { height: 190px; margin-top: 72px; }
  .banner-content { padding: 0 24px 22px; }
  .banner-heading { font-size: 30px; line-height: 36px; }
  .banner-heading em { font-size: 30px; line-height: 36px; }
}
@media (max-width: 480px) {
  .page-hero-banner { height: 170px; margin-top: 64px; }
  .banner-content { padding: 0 16px 18px; }
  .banner-heading { font-size: 24px; line-height: 30px; }
  .banner-heading em { font-size: 24px; line-height: 30px; }
}
