/* BURIED FLORIDA PAGE — Dedicated Styles */

/* HERO */
.bf-hero { position: relative; min-height: 50vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 9rem; } /* padding-top: 9rem matches .email-page's clearance floor (css/style.css) — the nav wraps to two lines and grows to ~145px tall on a wide band of desktop widths (~850-1420px), and align-items:center alone lets short-viewport content center right up under it. The top padding on the flex CONTAINER caps how high centered content can ever render, which a child-side fix cannot guarantee. Ruled Aug 26 2026 after Roz saw the hero title collide with the wrapped nav around 1380px. */
.bf-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bf-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,0.3) 0%, rgba(10,9,8,0.6) 50%, #0A0908 100%); }
.bf-hero-content { position: relative; z-index: 2; text-align: center; padding: 6rem 2rem 4rem; }
.bf-hero-content h1 { font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; color: #C4AF29; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.bf-hero-tagline { font-family: 'Source Sans 3', sans-serif; font-size: 1.5rem; color: #E8DCC8; font-style: italic; letter-spacing: 0.04em; }

/* EMAIL CAPTURE */
.bf-email { background: #131010; padding: 3.5rem 2rem; border-top: 1px solid rgba(196,175,41,0.1); border-bottom: 1px solid rgba(196,175,41,0.1); }
.bf-email-content { max-width: 38em; margin: 0 auto; text-align: center; }
.bf-email-content h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #C4AF29; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.bf-email-sub { font-size: 1.25rem; color: #E8DCC8; line-height: 1.7; margin-bottom: 1.5rem; }
.bf-email-form { margin-bottom: 0.5rem; }
.bf-email-input { height: 3.2rem; background: rgba(28,26,24,0.8); border: 2px solid rgba(196,175,41,0.3); color: #E8DCC8; padding: 0 1rem; font-size: 1.125rem; font-family: inherit; outline: none; flex: 1; }
.bf-email-input:focus { border-color: #C4AF29; }
.bf-email-input::placeholder { color: #8A8378; }
.bf-email-btn { padding: 0 1.5rem; height: 3.2rem; background: #C4AF29; color: #0A0908; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; border: none; cursor: pointer; font-family: var(--font-label); text-transform: uppercase; white-space: nowrap; }
.bf-email-fine { font-size: 1rem; color: #9A8520; margin-top: 0.8rem; }

/* FICTION SECTION */
.bf-fiction { padding: 4rem 2rem; max-width: 75rem; margin: 0 auto; }
.bf-fiction-header { text-align: center; margin-bottom: 3rem; }
.bf-fiction-header h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #C4AF29; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.bf-fiction-header p { font-size: 1.25rem; color: #E8DCC8; font-style: italic; line-height: 1.7; }

.bf-subsection { font-family: var(--font-label); font-size: 1.25rem; font-weight: 600; color: #C4AF29; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; margin: 3rem 0 1.5rem; }

/* CARD GRID */
.bf-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); gap: 1.75rem; margin-bottom: 1.5rem; }

.bf-card { background: #1C1A18; border: 1px solid rgba(196,175,41,0.12); overflow: hidden; transition: transform 0.3s, border-color 0.3s; text-decoration: none; color: inherit; display: block; }
.bf-card:hover { transform: translateY(-4px); border-color: rgba(196,175,41,0.35); }

.bf-card-cover { width: 100%; overflow: hidden; }
.bf-card-cover img { width: 100%; height: auto; display: block; }

.bf-card-info { padding: 1.25rem; }
.bf-card-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #FFFFFF; margin-bottom: 0.25rem; letter-spacing: 0.04em; }
.bf-card-ep { font-size: 1rem; color: #9A8520; letter-spacing: 0.03em; margin-bottom: 0.75rem; line-height: 1.4; }
.bf-card-hook { font-size: 1.2rem; color: #E8DCC8; font-style: italic; line-height: 1.6; margin-bottom: 1rem; }
.bf-card-cta { display: inline-block; font-family: var(--font-label); font-size: 1rem; font-weight: 600; color: #C4AF29; letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 2px solid #C4AF29; padding-bottom: 2px; }

/* ABOUT */
.bf-about { background: #1C1A18; padding: 4.5rem 2rem; text-align: center; }
.bf-about h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #C4AF29; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.bf-about p { font-size: 1.25rem; color: #E8DCC8; max-width: 38em; margin: 0 auto 1rem; line-height: 1.8; }
.bf-about-ep { font-size: 1.2rem; color: #FFFFFF; font-weight: 600; margin-top: 1.5rem; margin-bottom: 1.5rem; }
.bf-about-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

/* RESPONSIVE */
@media (max-width: 48rem) {
  .bf-hero-content h1 { font-size: 3rem; }
  .bf-hero-tagline { font-size: 1.2rem; }
  .bf-email-content h2 { font-size: 1.8rem; }
  .bf-fiction-header h2 { font-size: 1.8rem; }
  .bf-card-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .bf-card-info { padding: 1rem; }
  .bf-card-info h3 { font-size: 1.25rem; }
  .bf-card-hook { font-size: 1.05rem; }
  .bf-about h2 { font-size: 1.8rem; }
  .bf-about-btns { flex-direction: column; align-items: center; }
  .bf-email-form > div { flex-direction: column; }
  .bf-email-btn { width: 100%; height: 3.2rem; }
}
/* hide static fallback once MailerLite embed renders */
.ml-embedded:not(:empty) + .bf-email-form{display:none !important;}

/* NOW PLAYING — ruled Aug 25 2026. Narrow vertical column on purpose: it will
   hold YouTube Shorts, and a Short at full page width would blow the desktop
   layout apart. Swap instructions live on the video ID comment in the HTML. */
.bf-now-playing { background: #131010; padding: 3.5rem 2rem; border-top: 1px solid rgba(196,175,41,0.1); border-bottom: 1px solid rgba(196,175,41,0.1); text-align: center; }
.bf-now-playing-label { font-family: var(--font-label); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.28em; color: #C4AF29; text-transform: uppercase; margin-bottom: 1.4rem; }
.bf-now-playing-frame { width: 100%; max-width: 20rem; aspect-ratio: 9 / 16; margin: 0 auto 1.3rem; background: #000; border: 1px solid rgba(196,175,41,0.25); box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.55); overflow: hidden; }
.bf-now-playing-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.bf-now-playing-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: #FFFFFF; letter-spacing: 0.02em; margin-bottom: 0.4rem; }
.bf-now-playing-hook { font-size: 1.1rem; color: #E8DCC8; font-style: italic; max-width: 26rem; margin: 0 auto 1.2rem; line-height: 1.6; }
.bf-now-playing-cadence { font-size: 1rem; color: #9A8520; letter-spacing: 0.04em; }
.bf-now-playing-cadence a { color: #C4AF29; text-decoration: none; border-bottom: 1px solid #C4AF29; padding-bottom: 1px; margin-left: 0.3rem; }
.bf-now-playing-cadence a:hover { color: #D4BF39; border-color: #D4BF39; }

/* SIMPLE CTA — replaces the MailerLite block ruled off Jun 28. One place to
   sign up sitewide: /florida. */
.bf-simple-cta { padding: 3rem 2rem; text-align: center; }
.bf-simple-cta p { font-size: 1.3rem; color: #E8DCC8; margin-bottom: 1.3rem; }

@media (max-width: 48rem) {
  .bf-now-playing-frame { max-width: 15rem; }
  .bf-now-playing-title { font-size: 1.2rem; }
  .bf-now-playing-hook { font-size: 1rem; }
}
