/*
Theme Name: Rainbow Flamingo — Properly Palmer
Theme URI: https://properlypalmer.com
Author: John Palmer Payne
Author URI: https://properlypalmer.com
Description: A South Florida–branded WordPress theme for Properly Palmer — flamingo pink, teal, and sunset colors, Rubik Mono One sub-headers, and a Gagalin-ready display headline font (falls back to Lilita One). Built as a reusable pattern library (hero, CTA bands, stats, timeline, testimonials, product grids) so every page shares one consistent, conversion-focused design.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rainbowflamingo
*/

:root {
  --pp-flamingo: #ff5da2;
  --pp-flamingo-dark: #e0407f;
  --pp-teal: #00b8a9;
  --pp-sunset: #ff8c42;
  --pp-sun: #ffd166;
  --pp-ink: #1f2937;
  --pp-body: #4b5563;
  --pp-muted: #6b7280;
  --pp-sand: #fff8f2;
  --pp-sand-line: #ffe4cf;
  --pp-dark: #16213a;
  --pp-header-bg: #16213a;
  --pp-header-text: #fff8f2;
  --pp-footer-bg: #16213a;
  --pp-logo-height: 60px;

  --pp-accent: var(--pp-flamingo);
  --pp-accent-dark: var(--pp-flamingo-dark);
  --pp-cream: var(--pp-sand);
  --pp-cream-line: var(--pp-sand-line);

  --pp-rainbow: linear-gradient(90deg, var(--pp-flamingo), var(--pp-sunset), var(--pp-sun), var(--pp-teal));

  /* Font families + all colors above are DEFAULTS. Go to
     Appearance > Customize > Rainbow Flamingo Theme Options in
     wp-admin to change colors/fonts with live color pickers and
     dropdowns — no code editing needed. The Customizer writes an
     override <style> block into <head> that beats these defaults. */
  --pp-font-display: 'Gagalin', 'Lilita One', cursive;
  --pp-font-sub: 'Rubik Mono One', 'Rubik', sans-serif;
  --pp-font-body: 'Rubik', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--pp-font-body); color: var(--pp-ink); background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.pp-home { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.pp-wide { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   SITE HEADER — magazine-masthead layout: optional eyebrow/graphic on
   top, then one horizontal row with [left nav] [logo] [right nav].
   Colors come from Appearance > Customize > ... > Header & Footer
   (--pp-header-bg / --pp-header-text set there; these are fallbacks).
============================================================= */
.pp-site-header {
  background: var(--pp-header-bg, var(--pp-dark));
  color: var(--pp-header-text, #fff8f2);
  padding: 26px 20px 18px;
  position: relative;
  z-index: 100;
}
.pp-site-header-inner { max-width: 1200px; margin: 0 auto; }

.pp-header-top { text-align: center; margin-bottom: 18px; }
.pp-header-graphic { max-height: 70px; width: auto; margin: 0 auto 12px; }
.pp-header-eyebrow {
  font-family: var(--pp-font-body); font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  font-size: 13px; color: var(--pp-header-text, #fff8f2); opacity: .8;
}

.pp-header-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.pp-logo { grid-column: 2; justify-self: center; text-align: center; display: block; }
.pp-logo-link,
.pp-logo .custom-logo-link {
  font-family: var(--pp-font-display); font-weight: normal;
  font-size: clamp(28px, 5vw, 46px); line-height: 1; text-decoration: none;
  color: var(--pp-header-text, #fff8f2); display: block;
}
.pp-logo img,
.pp-logo img.custom-logo {
  max-height: var(--pp-logo-height, 60px);
  width: auto;
  height: var(--pp-logo-height, 60px);
  object-fit: contain;
  margin: 0 auto;
}
.pp-header-tagline {
  text-align: center; font-family: var(--pp-font-body); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: 11.5px; color: var(--pp-header-text, #fff8f2); opacity: .75; margin-top: 16px;
}

.pp-nav-menu { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.pp-nav-side-left { grid-column: 1; justify-self: end; }
.pp-nav-side-right { grid-column: 3; justify-self: start; }
.pp-nav-menu li { position: relative; }
.pp-nav-menu li a {
  display: inline-block; padding: 8px 14px; border-radius: 30px; text-decoration: none;
  font-weight: 600; font-size: 13.5px; letter-spacing: .3px; color: var(--pp-header-text, #fff8f2); opacity: .9;
}
.pp-nav-menu li a:hover, .pp-nav-menu li.current-menu-item a { opacity: 1; background: rgba(255,255,255,0.12); }

/* Dropdown submenus — any page nested under a parent in Appearance > Menus
   gets one of these automatically. Hover opens on desktop; pp-lib.js
   handles the toggle button tap on mobile/touch. */
.pp-nav-menu li.menu-item-has-children { display: flex; align-items: center; }
.pp-submenu-toggle {
  background: none; border: none; color: inherit; opacity: .75; cursor: pointer;
  font-size: 11px; padding: 4px 10px 4px 0; line-height: 1;
}
.pp-submenu-toggle:hover { opacity: 1; }
.pp-nav-menu .sub-menu {
  list-style: none; margin: 0; padding: 8px 0;
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--pp-header-bg, var(--pp-dark));
  border-radius: 10px; box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 40;
}
.pp-nav-side-right .sub-menu { left: auto; right: 0; }
.pp-nav-menu .sub-menu li { position: static; }
.pp-nav-menu .sub-menu li a { display: block; padding: 10px 18px; white-space: nowrap; opacity: .9; border-radius: 0; }
.pp-nav-menu .sub-menu li a:hover { opacity: 1; background: rgba(255,255,255,0.12); }
.pp-nav-menu li.menu-item-has-children:hover > .sub-menu,
.pp-nav-menu li.menu-item-has-children.pp-submenu-open > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.pp-nav-toggle {
  display: none; background: none; border: 2px solid rgba(255,255,255,0.3); border-radius: 10px;
  padding: 8px 12px; font-size: 20px; cursor: pointer; color: var(--pp-header-text, #fff8f2);
  grid-column: 1; justify-self: start;
}

.pp-header-ad-strip { background: var(--pp-sand); border-bottom: 1px solid var(--pp-sand-line); text-align: center; padding: 10px 20px; }

@media (max-width: 780px) {
  .pp-header-row { grid-template-columns: auto 1fr; }
  .pp-nav-toggle { display: inline-flex; align-items: center; }
  .pp-logo { grid-column: 2; justify-self: start; text-align: left; }
  .pp-logo-link, .pp-logo .custom-logo-link { font-size: 26px; }
  .pp-header-tagline { text-align: left; }
  .pp-nav-side-left, .pp-nav-side-right {
    grid-column: 1 / -1; justify-self: stretch; flex-direction: column; align-items: stretch;
    max-height: 0; overflow: hidden; transition: max-height .2s ease;
  }
  .pp-header-row.is-open .pp-nav-side-left, .pp-header-row.is-open .pp-nav-side-right { max-height: 600px; margin-top: 10px; }
  .pp-nav-menu li a { display: block; padding: 12px 6px; }
  .pp-nav-menu li.menu-item-has-children { flex-direction: column; align-items: stretch; }
  .pp-submenu-toggle { position: absolute; top: 2px; right: 0; padding: 10px 12px; }
  .pp-nav-menu .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(0,0,0,0.15); border-radius: 8px;
    max-height: 0; overflow: hidden; padding: 0; transition: max-height .2s ease;
  }
  .pp-nav-menu li.pp-submenu-open > .sub-menu { max-height: 600px; padding: 6px 0; }
  .pp-nav-menu .sub-menu li a { padding: 10px 18px 10px 26px; }
}

/* ============================================================
   SITE FOOTER
============================================================= */
.pp-site-footer { background: var(--pp-footer-bg, var(--pp-dark)); color: #f3ece6; margin-top: 60px; }
.pp-footer-widgets {
  max-width: 1100px; margin: 0 auto; padding: 40px 20px 10px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pp-footer-widget-col .pp-widget-title { font-family: var(--pp-font-sub); font-weight: 400; font-size: 14px; color: var(--pp-sun); margin: 0 0 14px; }
.pp-footer-widget-col ul { list-style: none; margin: 0; padding: 0; }
.pp-footer-widget-col li { margin-bottom: 8px; }
.pp-footer-widget-col a { color: #e8dcd0; text-decoration: none; font-size: 13.5px; }
.pp-footer-widget-col a:hover { color: var(--pp-sun); }
.pp-site-footer-inner { max-width: 1100px; margin: 0 auto; padding: 44px 20px 26px; text-align: center; }
.pp-site-footer .pp-logo { color: #fff; justify-self: center; margin-bottom: 10px; grid-column: auto; }
.pp-site-footer p.pp-tagline { color: #cfc3b8; font-size: 14px; max-width: 480px; margin: 0 auto 22px; }
.pp-footer-links { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 4px; margin: 0 0 22px; padding: 0; }
.pp-footer-links a { display: inline-block; padding: 8px 14px; font-size: 13.5px; text-decoration: none; color: #e8dcd0; }
.pp-footer-links a:hover { color: var(--pp-sun); }
.pp-site-footer .pp-copyright { font-size: 12.5px; color: #93867a; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }

/* ============================================================
   SIDEBAR LAYOUT (single posts, archives, category, blog index)
   Only applied when Customize > Layout > "Show sidebar" is on AND
   there's at least one widget in Main Sidebar.
============================================================= */
.pp-layout { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.pp-main-col { min-width: 0; }
.pp-sidebar-col { min-width: 0; }
@media (max-width: 860px) { .pp-layout { grid-template-columns: 1fr; } }

/* ============================================================
   WIDGETS (sidebar + footer + ad zones) — generic styling so any
   core widget (Text, Custom HTML, Recent Posts, Categories...) or
   the custom Affiliate Product widget looks on-brand automatically.
============================================================= */
.pp-widget { margin-bottom: 30px; }
.pp-widget-title { font-family: var(--pp-font-sub); font-weight: 400; font-size: 16px; color: var(--pp-flamingo-dark); margin: 0 0 14px; }
.pp-sidebar-col .pp-widget { background: var(--pp-sand); border: 2px solid var(--pp-sand-line); border-radius: 14px; padding: 18px 20px; }
.pp-sidebar-col .pp-widget ul { list-style: none; margin: 0; padding: 0; }
.pp-sidebar-col .pp-widget li { padding: 6px 0; border-bottom: 1px solid var(--pp-sand-line); font-size: 13.5px; }
.pp-sidebar-col .pp-widget li:last-child { border-bottom: none; }
.pp-sidebar-col .pp-widget a { text-decoration: none; color: var(--pp-body); }
.pp-sidebar-col .pp-widget a:hover { color: var(--pp-flamingo-dark); }

.pp-ad-zone { text-align: center; margin: 30px 0; }
.pp-ad-zone .pp-widget { background: none; border: 1px dashed var(--pp-sand-line); padding: 14px; border-radius: 10px; }

/* ============================================================
   PATTERN: HERO (centered + split variants)
============================================================= */
.pp-hero { text-align: center; padding: clamp(36px, 8vw, 60px) 12px clamp(30px, 6vw, 50px); }
.pp-eyebrow { font-family: var(--pp-font-sub); letter-spacing: 1.5px; text-transform: uppercase; font-size: 12px; color: var(--pp-teal); font-weight: 400; margin-bottom: 14px; }
.pp-rainbow-bar { height: 6px; border-radius: 6px; background: var(--pp-rainbow); max-width: 220px; margin: 0 auto 22px; }
.pp-hero h1 { font-family: var(--pp-font-display); font-weight: normal; font-size: clamp(32px, 6.5vw, 52px); line-height: 1.1; margin: 0 0 18px; color: var(--pp-ink); }
.pp-hero p.pp-hero-sub { font-size: clamp(15px, 2.2vw, 18px); line-height: 1.6; max-width: 640px; margin: 0 auto 28px; color: var(--pp-body); }
.pp-hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pp-hero-buttons a, .pp-btn { display: inline-block; padding: 13px 26px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 15px; border: none; cursor: pointer; }
.pp-btn-primary { background: var(--pp-flamingo); color: #fff; }
.pp-btn-primary:hover { background: var(--pp-flamingo-dark); }
.pp-btn-secondary { background: #fff; color: var(--pp-ink); border: 2px solid var(--pp-sand-line); }
.pp-btn-teal { background: var(--pp-teal); color: #fff; }
.pp-btn-dark { background: var(--pp-dark); color: #fff; }

/* Split hero: photo one side, copy the other (About page) */
.pp-hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: clamp(30px, 6vw, 56px) 0; text-align: left; }
.pp-hero-split .pp-hero-media img { border-radius: 24px; width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 6px solid #fff; box-shadow: 0 20px 40px rgba(31,41,55,0.14); }
.pp-hero-split .pp-eyebrow, .pp-hero-split .pp-rainbow-bar { margin-left: 0; }
.pp-hero-split h1 { font-size: clamp(30px, 5.5vw, 46px); }
.pp-hero-split p.pp-hero-sub { margin-left: 0; }
.pp-hero-split .pp-hero-buttons { justify-content: flex-start; }
@media (max-width: 760px) { .pp-hero-split { grid-template-columns: 1fr; text-align: center; } .pp-hero-split .pp-eyebrow, .pp-hero-split .pp-rainbow-bar { margin: 0 auto 14px; } .pp-hero-split .pp-hero-sub { margin: 0 auto 28px; } .pp-hero-split .pp-hero-buttons { justify-content: center; } .pp-hero-split .pp-hero-media { order: -1; max-width: 280px; margin: 0 auto; } }

/* ============================================================
   Section header
============================================================= */
.pp-section { margin-bottom: clamp(40px, 6vw, 64px); }
.pp-section-title { text-align: center; margin: 10px 0 8px; }
.pp-section-title h2 { font-family: var(--pp-font-sub); font-weight: 400; font-size: clamp(18px, 3vw, 24px); margin: 0 0 6px; color: var(--pp-ink); }
.pp-section-title p { color: var(--pp-muted); font-size: 15px; margin: 0 0 32px; }

/* ============================================================
   Interest / value cards
============================================================= */
.pp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.pp-card { background: #fff; border-radius: 16px; padding: 24px 20px; text-decoration: none; display: block; border: 2px solid var(--pp-sand-line); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.pp-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(255,93,162,0.12); border-color: var(--pp-flamingo); }
.pp-card .pp-emoji { font-size: 28px; margin-bottom: 12px; display: block; }
.pp-card h3 { font-family: var(--pp-font-body); font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.pp-card p { font-size: 14px; line-height: 1.55; color: var(--pp-body); margin: 0 0 12px; }
.pp-card .pp-link { font-size: 13px; font-weight: 700; color: var(--pp-flamingo-dark); }

/* ============================================================
   Post grid / post card
============================================================= */
.pp-post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.pp-post-card { border: 2px solid var(--pp-sand-line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; background: #fff; }
.pp-post-thumb { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--pp-sand); }
.pp-post-thumb-fallback { width: 100%; aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--pp-flamingo), var(--pp-sunset)); color: #fff; font-family: var(--pp-font-display); font-size: 34px; }
.pp-post-body { padding: 18px 18px 16px; display: flex; flex-direction: column; flex: 1; }
.pp-post-cat { font-family: var(--pp-font-sub); font-size: 10.5px; font-weight: 400; text-transform: uppercase; letter-spacing: .5px; color: var(--pp-teal); margin-bottom: 8px; }
.pp-post-body h3 { font-family: var(--pp-font-body); font-weight: 700; font-size: 17px; margin: 0 0 8px; line-height: 1.3; }
.pp-post-body h3 a { text-decoration: none; }
.pp-post-body p.pp-excerpt { font-size: 13.5px; color: var(--pp-body); line-height: 1.55; margin: 0 0 14px; flex: 1; }
.pp-post-meta { font-size: 12px; color: var(--pp-muted); margin-bottom: 12px; }
.pp-share-row { display: flex; gap: 8px; align-items: center; border-top: 1px solid var(--pp-sand-line); padding-top: 12px; flex-wrap: wrap; }
.pp-share-row button, .pp-share-row a { font-size: 11.5px; font-weight: 600; padding: 6px 10px; border-radius: 20px; border: 1px solid var(--pp-sand-line); background: var(--pp-sand); cursor: pointer; text-decoration: none; color: var(--pp-ink); font-family: var(--pp-font-body); }
.pp-share-row button:hover, .pp-share-row a:hover { background: #ffe9da; }
.pp-status { text-align: center; color: var(--pp-muted); font-size: 14px; padding: 20px 0; grid-column: 1 / -1; }

/* ============================================================
   Affiliate / product grid + shop tabs
============================================================= */
.pp-disclosure { font-size: 12px; color: var(--pp-muted); text-align: center; max-width: 640px; margin: 0 auto 28px; line-height: 1.5; background: var(--pp-sand); border: 1px solid var(--pp-sand-line); border-radius: 12px; padding: 12px 18px; }
.pp-affiliate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.pp-affiliate-card { position: relative; border: 2px solid var(--pp-sand-line); border-radius: 16px; padding: 18px; text-align: center; background: #fff; }
.pp-affiliate-card img { border-radius: 12px; margin: 0 auto 14px; aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.pp-affiliate-card h4 { font-family: var(--pp-font-body); font-weight: 700; font-size: 15px; margin: 0 0 6px; }
.pp-affiliate-card p { font-size: 13px; color: var(--pp-body); margin: 0 0 14px; line-height: 1.5; }
.pp-affiliate-card a.pp-shop-link { display: inline-block; font-size: 13px; font-weight: 700; color: #fff; background: var(--pp-teal); padding: 8px 18px; border-radius: 20px; text-decoration: none; }
.pp-badge { position: absolute; top: 12px; left: 12px; background: var(--pp-flamingo); color: #fff; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 4px 10px; border-radius: 20px; }
.pp-shop-section-label { font-family: var(--pp-font-sub); font-weight: 400; font-size: 16px; color: var(--pp-flamingo-dark); margin: 0 0 18px; text-align: left; }
.pp-shop-cta-band { text-align: center; background: var(--pp-dark); color: #fff; border-radius: 20px; padding: clamp(28px, 5vw, 44px); margin: 10px 0 50px; }
.pp-shop-cta-band h3 { font-family: var(--pp-font-sub); font-weight: 400; margin: 0 0 10px; }
.pp-shop-cta-band p { color: #cfc3b8; margin: 0 0 20px; }

/* ============================================================
   CTA bands (Subscribe / Collaborate) — same pattern, different skin
============================================================= */
.pp-cta-band { border-radius: 20px; padding: clamp(30px, 6vw, 50px) clamp(20px, 6vw, 40px); text-align: center; position: relative; overflow: hidden; }
.pp-cta-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--pp-rainbow); }
.pp-cta-band h2 { font-family: var(--pp-font-sub); font-weight: 400; font-size: clamp(20px, 3vw, 26px); margin: 0 0 14px; }
.pp-cta-band p { max-width: 600px; margin: 0 auto 24px; line-height: 1.6; font-size: 15.5px; }
.pp-cta-dark { background: var(--pp-dark); color: #fff8f2; }
.pp-cta-dark p { color: #e8dcd0; }
.pp-cta-sand { background: var(--pp-sand); color: var(--pp-ink); border: 2px solid var(--pp-sand-line); }
.pp-cta-sand p { color: var(--pp-body); }
.pp-cta-band-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 60px; }

/* Newsletter form (used in CTA bands + Subscribe page) */
.pp-newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 420px; margin: 0 auto; }
.pp-newsletter-form input[type="email"] { flex: 1; min-width: 200px; padding: 12px 16px; border-radius: 30px; border: 2px solid var(--pp-sand-line); font-size: 14px; font-family: var(--pp-font-body); }
.pp-newsletter-form button { padding: 12px 22px; border-radius: 30px; border: none; background: var(--pp-teal); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; }
.pp-mc-responses { width: 100%; text-align: center; }
.pp-mc-responses .response { font-size: 13px; margin-top: 10px; }
.pp-mc-responses #mce-error-response { color: #d9534f; }
.pp-mc-responses #mce-success-response { color: #1a7f5a; }
.pp-cta-dark .pp-mc-responses #mce-error-response { color: #ff9d94; }
.pp-cta-dark .pp-mc-responses #mce-success-response { color: #7de0b5; }
.pp-subscriber-count { font-size: 13px; color: var(--pp-muted); margin-top: 14px; }
.pp-cta-dark .pp-subscriber-count { color: #cfc3b8; }

/* ============================================================
   Stats band / press band / timeline / values / testimonials
============================================================= */
.pp-stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin-bottom: 50px; }
.pp-stat { background: var(--pp-sand); border: 2px solid var(--pp-sand-line); border-radius: 16px; padding: 22px 16px; text-align: center; }
.pp-stat strong { display: block; font-family: var(--pp-font-display); font-weight: normal; font-size: clamp(24px, 4vw, 32px); color: var(--pp-flamingo-dark); }
.pp-stat span { font-size: 12.5px; color: var(--pp-muted); }

.pp-press-band { text-align: center; margin-bottom: 50px; }
.pp-press-band .pp-press-label { font-family: var(--pp-font-sub); font-size: 12px; color: var(--pp-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.pp-press-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; }
.pp-press-logos span { font-family: var(--pp-font-body); font-weight: 700; font-size: 16px; color: var(--pp-muted); opacity: .7; }

.pp-timeline { max-width: 700px; margin: 0 auto; }
.pp-timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding-bottom: 30px; position: relative; }
.pp-timeline-item::before { content: ""; position: absolute; left: 44px; top: 30px; bottom: -6px; width: 2px; background: var(--pp-sand-line); }
.pp-timeline-item:last-child::before { display: none; }
.pp-timeline-year { font-family: var(--pp-font-sub); font-size: 13px; color: var(--pp-flamingo-dark); text-align: right; padding-top: 4px; }
.pp-timeline-body h4 { margin: 0 0 6px; font-size: 15.5px; }
.pp-timeline-body p { margin: 0; font-size: 14px; color: var(--pp-body); line-height: 1.6; }
@media (max-width: 500px) { .pp-timeline-item { grid-template-columns: 1fr; } .pp-timeline-year { text-align: left; } .pp-timeline-item::before { display: none; } }

.pp-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 50px; }
.pp-testimonial { background: #fff; border: 2px solid var(--pp-sand-line); border-radius: 16px; padding: 22px; }
.pp-testimonial p { font-size: 14.5px; line-height: 1.6; color: var(--pp-body); margin: 0 0 14px; font-style: italic; }
.pp-testimonial-author { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.pp-testimonial-author span.pp-role { font-weight: 400; color: var(--pp-muted); }

/* ============================================================
   Packages / offerings (Collaborate page)
============================================================= */
.pp-packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 50px; }
.pp-package { background: #fff; border: 2px solid var(--pp-sand-line); border-radius: 18px; padding: 26px 22px; text-align: center; }
.pp-package.pp-package-featured { border-color: var(--pp-flamingo); box-shadow: 0 12px 30px rgba(255,93,162,0.14); }
.pp-package h3 { font-family: var(--pp-font-sub); font-weight: 400; font-size: 16px; margin: 0 0 10px; }
.pp-package .pp-price { font-family: var(--pp-font-display); font-size: 26px; color: var(--pp-flamingo-dark); margin: 0 0 14px; }
.pp-package ul { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; }
.pp-package li { font-size: 13.5px; color: var(--pp-body); padding: 6px 0; padding-left: 22px; position: relative; }
.pp-package li::before { content: "✓"; position: absolute; left: 0; color: var(--pp-teal); font-weight: 700; }

/* ============================================================
   About page pillars (reuses .pp-grid/.pp-card look, different data)
============================================================= */
.pp-pillars .pp-card { text-align: center; }

/* ============================================================
   Contact
============================================================= */
.pp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.pp-contact-notice { padding: 12px 18px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.pp-contact-notice-success { background: #e3f6ec; color: #1a7f5a; }
.pp-contact-notice-error { background: #fdeceb; color: #b3362a; }
.pp-contact-form { display: flex; flex-direction: column; gap: 14px; }
.pp-contact-form input, .pp-contact-form textarea { width: 100%; padding: 12px 16px; border-radius: 12px; border: 2px solid var(--pp-sand-line); font-size: 14px; font-family: var(--pp-font-body); }
.pp-contact-form textarea { min-height: 130px; resize: vertical; }
.pp-contact-form button { padding: 12px 24px; border-radius: 30px; border: none; background: var(--pp-flamingo); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; align-self: flex-start; }
.pp-contact-info { background: var(--pp-sand); border-radius: 16px; padding: 26px; border: 2px solid var(--pp-sand-line); }
.pp-contact-info h3 { font-family: var(--pp-font-body); font-weight: 700; margin: 0 0 10px; font-size: 17px; }
.pp-contact-info p { font-size: 14px; color: var(--pp-body); line-height: 1.6; margin: 0 0 16px; }
@media (max-width: 700px) { .pp-contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Follow
============================================================= */
.pp-follow { text-align: center; }
.pp-follow h2 { font-family: var(--pp-font-sub); font-weight: 400; font-size: 20px; margin: 0 0 8px; }
.pp-follow p { color: var(--pp-muted); margin: 0 0 20px; }
.pp-follow-links a { display: inline-block; margin: 0 8px 8px; padding: 10px 18px; border: 2px solid var(--pp-sand-line); border-radius: 30px; text-decoration: none; color: var(--pp-ink); font-size: 13.5px; font-weight: 600; }
.pp-follow-links a:hover { background: var(--pp-sand); border-color: var(--pp-flamingo); }

/* ============================================================
   Single post
============================================================= */
.pp-single-hero { text-align: center; padding: clamp(30px, 6vw, 50px) 12px 20px; }
.pp-single-hero .pp-post-cat { justify-content: center; }
.pp-single-hero h1 { font-family: var(--pp-font-display); font-weight: normal; font-size: clamp(28px, 5vw, 44px); margin: 12px 0; }
.pp-single-hero .pp-post-meta { font-size: 13px; }
.pp-full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.pp-single-thumb { overflow: hidden; margin-bottom: 34px; }
.pp-single-thumb.pp-full-bleed { height: clamp(240px, 34vw, 460px); }
.pp-single-thumb.pp-full-bleed img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* object-position is set inline per-post from the Focal Point picker
     on the post edit screen — defaults to centered if none is set. */
}
@media (max-width: 780px) {
  .pp-single-thumb.pp-full-bleed { height: clamp(180px, 55vw, 320px); }
}
.pp-single-content { font-size: 16.5px; line-height: 1.75; color: var(--pp-body); max-width: 760px; margin: 0 auto; }
.pp-single-content h2, .pp-single-content h3 { font-family: var(--pp-font-body); font-weight: 700; color: var(--pp-ink); }
.pp-single-content img { border-radius: 14px; margin: 20px 0; }
.pp-single-content a { color: var(--pp-flamingo-dark); font-weight: 600; }
.pp-single-share { max-width: 760px; margin: 30px auto 0; }
.pp-back-link { display: inline-block; margin: 30px auto 0; }

/* ============================================================
   Archive / category / index
============================================================= */
.pp-archive-hero { text-align: center; padding: clamp(30px, 6vw, 50px) 12px 30px; }
.pp-archive-hero h1 { font-family: var(--pp-font-display); font-weight: normal; font-size: clamp(28px, 5vw, 44px); margin: 12px 0; }
.pp-archive-hero p { color: var(--pp-body); max-width: 560px; margin: 0 auto; }
.pp-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.pp-pagination a, .pp-pagination span { padding: 8px 16px; border-radius: 20px; border: 2px solid var(--pp-sand-line); text-decoration: none; font-size: 13.5px; font-weight: 600; }
.pp-pagination .current { background: var(--pp-flamingo); color: #fff; border-color: var(--pp-flamingo); }

/* ============================================================
   404
============================================================= */
.pp-404 { text-align: center; padding: clamp(60px, 10vw, 100px) 12px; }
.pp-404 .pp-emoji-big { font-size: 60px; margin-bottom: 10px; }
.pp-404 h1 { font-family: var(--pp-font-display); font-weight: normal; font-size: clamp(30px, 6vw, 46px); margin: 0 0 14px; }
.pp-404 p { color: var(--pp-body); margin: 0 0 26px; }

@media (max-width: 520px) {
  .pp-newsletter-form { flex-direction: column; }
  .pp-newsletter-form input[type="email"] { width: 100%; }
}

/* ------------------------------------------------------------
   Real Gagalin font, color palette, and font-family choices are
   now set in Appearance > Customize > Rainbow Flamingo Theme
   Options (paste your licensed Gagalin .woff2 URL there — no CSS
   editing needed). This file only holds fallback defaults.
------------------------------------------------------------- */
