/**
 * Funnel Pages Stylesheet — Realitni Rentier
 * Used by: funnel/thank-you/payment pages via page-landing.php
 */

/* === BASE === */
.fn {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #f8f4e6;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fn *, .fn *::before, .fn *::after { box-sizing: border-box; margin: 0; padding: 0; }
.fn a { color: inherit; text-decoration: none; }
.fn img { max-width: 100%; height: auto; display: block; }
.fn-container { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* === GOLD HEADER BANNER === */
.fn-header {
  background: #d0a763;
  padding: 20px 0;
  text-align: center;
}
.fn-header h1 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  color: #202a31;
  line-height: 1.25;
}

/* === DARK SECTION === */
.fn-dark {
  background: #393e52;
  padding: 48px 0;
}
.fn-dark h2 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 400;
  color: #f8f4e6;
  text-align: center;
  margin-bottom: 20px;
}

/* === CREAM SECTION === */
.fn-cream {
  background: #f8f4e6;
  padding: 48px 0;
  color: #202a31;
}
.fn-cream h2 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 400;
  color: #202a31;
  text-align: center;
  margin-bottom: 20px;
}
.fn-cream h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #202a31;
  margin-bottom: 12px;
}
.fn-cream p {
  color: #393e52;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* === TWO-COLUMN LAYOUT (photo + text) === */
.fn-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 36px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.fn-headshot {
  width: 100%;
  max-width: 260px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

/* === BENEFIT ITEMS WITH GOLD CHECK === */
.fn-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
}
.fn-benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #d0a763;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #202a31;
  margin-top: 2px;
}

/* === CTA BUTTON === */
.fn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d0a763;
  color: #202a31;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: none;
  box-shadow: 0 4px 16px rgba(208, 167, 99, 0.2);
  text-decoration: none;
}
.fn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(208, 167, 99, 0.3);
  background: #c49a58;
  color: #202a31;
}

/* === DECISION SECTION (two options) === */
.fn-decision {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto 32px;
}
.fn-decision-option {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}
.fn-decision-or {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-size: 24px;
  color: rgba(248, 244, 230, 0.5);
}

/* === EMAIL INSTRUCTIONS GRID (Seznam + Gmail) === */
.fn-email-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.fn-email-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.fn-email-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.fn-email-col img {
  border-radius: 8px;
  margin-top: 8px;
}

/* === HIGHLIGHT BOX (cream on dark) === */
.fn-highlight {
  background: #f8f4e6;
  color: #202a31;
  padding: 20px 28px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
}
.fn-highlight strong { color: #202a31; }

/* === EMBED CONTAINERS (ThriveCart, Calendar) === */
.fn-embed { margin: 24px 0; }

/* === ACCENT TEXT === */
.fn-gold { color: #d0a763; }
.fn-green { color: #789e43; }
.fn-strike { text-decoration: line-through; color: #b53525; }

/* === FOOTER FOR FUNNEL PAGES === */
.fn-footer {
  background: #202a31;
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: #8a8d94;
}
.fn-footer a {
  color: #8a8d94;
  text-decoration: underline;
}
.fn-footer a:hover { color: #d0a763; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .fn-header h1 { font-size: 24px; padding: 0 16px; }
  .fn-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .fn-headshot { max-width: 180px; }
  .fn-email-grid { grid-template-columns: 1fr; gap: 20px; }
  .fn-decision { grid-template-columns: 1fr; gap: 16px; }
  .fn-decision-or { font-size: 20px; }
  .fn-dark, .fn-cream { padding: 32px 0; }
  .fn-cta { width: 100%; max-width: 400px; }
}
