/*
Theme Name: SupportEveryBody
Theme URI: https://www.supporteverybody.com
Author: SupportEveryBody
Description: Custom lightweight theme for SupportEveryBody – patented invisible bra and leotard, available for licensing.
Version: 1.0.0
Text Domain: supporteverybody
*/

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.85rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

/* ========== UTILITY ========== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========== BUTTONS ========== */
.btn-gold {
  display: inline-block;
  background: #f4bd2c;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover,
.btn-gold:focus {
  background: #e0ab1e;
  transform: translateY(-1px);
}

.btn-gold:focus-visible {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo img {
  height: auto;
  width: 280px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #f4bd2c;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  font-weight: 600;
}

.nav-linkedin {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.nav-linkedin svg {
  width: 22px;
  height: 22px;
  fill: #8e8e8e;
  transition: fill 0.2s;
}

.nav-linkedin:hover svg {
  fill: #f4bd2c;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 0;
  margin-top: 80px;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: auto;
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-copy {
  font-size: 0.85rem;
  color: #999;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: #999;
  transition: color 0.2s;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #f4bd2c;
}

.footer-links svg {
  width: 20px;
  height: 20px;
  fill: #999;
  transition: fill 0.2s;
}

.footer-links a:hover svg {
  fill: #f4bd2c;
}

/* ========== HERO (HOME) ========== */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  max-width: 880px;
  margin: 0 auto 1rem;
  text-wrap: balance;
}

/* Keeps a phrase together so a headline breaks where we want it.
   At narrow viewports, allow normal wrapping so nothing overflows. */
.title-keep {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .title-keep { white-space: normal; }
}

.hero .subheadline {
  font-size: 1.15rem;
  color: #444;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ========== SECTIONS ========== */
.section {
  padding: 60px 0;
}

.section--gray {
  background: #f5f5f5;
}

.section-intro {
  max-width: 880px;
  margin-bottom: 2.5rem;
}

.section-intro p {
  color: #444;
  font-size: 1.05rem;
}

/* ========== FEATURE CARDS ========== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-top: 3px solid #f4bd2c;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #444;
  font-size: 0.95rem;
}

/* ========== COMPARISON IMAGES ========== */
.comparison-grid {
  display: grid;
  gap: 40px;
  margin-top: 2rem;
}

.comparison-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.comparison-item {
  text-align: center;
}

.comparison-item img {
  border-radius: 8px;
  width: 100%;
}

.comparison-label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}

/* Overlay-label variant: gold pill welded to the bottom of the image.
   Keeps the comparison side-by-side at every width so the "wow" survives mobile. */
.comparison-pair.comparison-pair--overlay {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.comparison-pair.comparison-pair--overlay .comparison-item {
  position: relative;
}
.comparison-pair.comparison-pair--overlay .comparison-item img {
  display: block;
}
.comparison-pair.comparison-pair--overlay .comparison-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  margin: 0;
  padding: 6px 14px;
  background: #f4bd2c;
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .comparison-pair.comparison-pair--overlay {
    gap: 8px;
  }
  .comparison-pair.comparison-pair--overlay .comparison-label {
    bottom: 8px;
    padding: 4px 10px;
    font-size: 0.68rem;
  }
}

/* Prose lists (used in body copy) */
.prose-list {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
  list-style: disc;
}
.prose-list li {
  margin: 0.35rem 0;
  padding-left: 0.25rem;
  line-height: 1.6;
  color: #222;
}
.prose-list li::marker {
  color: #f4bd2c;
}

/* Contact-page variant: no bullets, centered to match the page layout */
.contact-list {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
  text-align: center;
}
.contact-list li {
  padding-left: 0;
}
.contact-list li::marker {
  content: none;
}

/* ========== STATS ========== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 2.5rem 0;
  text-align: center;
}

.stat-badge .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #f4bd2c;
  line-height: 1;
}

.stat-badge .stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 8px 0 4px;
}

.stat-badge .stat-sub {
  font-size: 0.85rem;
  color: #666;
  max-width: 260px;
  margin: 0 auto;
}

/* ========== TESTIMONIALS ========== */
.featured-testimonial {
  background: #f4bd2c;
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.featured-testimonial img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.featured-testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
}

.featured-testimonial .attribution {
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
}

.featured-testimonial .attribution-sub {
  font-weight: 400;
  font-size: 0.9rem;
  color: #333;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #f4bd2c;
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}

.testimonial-card .quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: rgba(0,0,0,0.08);
  font-family: Georgia, serif;
  position: absolute;
  top: 12px;
  left: 16px;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  padding-top: 8px;
}

.testimonial-card .attribution {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  color: #333;
}

/* ========== VIDEO ========== */
.video-wrapper {
  max-width: 800px;
  margin: 2rem auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* ========== ABOUT / BIOS ========== */
.bio-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  padding: 50px 0;
}

.bio-section + .bio-section {
  border-top: 1px solid #eee;
}

.bio-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
}

.bio-content h2 {
  margin-bottom: 0.25rem;
}

.bio-content .bio-title {
  color: #8e8e8e;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bio-section:first-of-type .bio-title {
  color: #f4bd2c;
  font-size: 1.15rem;
  font-weight: 700;
}

.bio-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  font-weight: 600;
  color: #000;
  transition: color 0.2s;
}

.bio-linkedin:hover {
  color: #f4bd2c;
}

.bio-linkedin svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Secondary bio (Arjen) same size as primary */
.bio-section--secondary .bio-photo img {
  width: 280px;
  height: 280px;
}

.bio-section--secondary {
  grid-template-columns: 280px 1fr;
}

/* ========== CONTACT ========== */
.contact-section {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 0;
}

.contact-section p {
  font-size: 1.05rem;
  color: #444;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.contact-actions .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 14px 24px;
  border: 2px solid #000;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.contact-linkedin:hover {
  border-color: #f4bd2c;
  color: #f4bd2c;
}

.contact-linkedin svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ========== HOME-SPECIFIC ========== */
.home-comparison {
  max-width: 700px;
  margin: 2rem auto 0;
}

.home-bottom-cta {
  text-align: center;
  padding: 40px 0 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 16px;
  }
  .bio-section {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }
  .bio-photo img {
    width: 220px;
    height: 220px;
  }
  .bio-section--secondary {
    grid-template-columns: 200px 1fr;
  }
  .bio-section--secondary .bio-photo img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 2.25rem; }

  /* Mobile nav */
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 4px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
    font-size: 1rem;
  }

  .main-nav a::after {
    left: 0;
    right: 0;
  }

  .nav-linkedin {
    margin-left: 0;
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  /* Grids to single column */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .comparison-pair {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .featured-testimonial {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }

  .featured-testimonial img {
    margin: 0 auto;
    width: 150px;
    height: 150px;
  }

  /* Bios stack */
  .bio-section,
  .bio-section--secondary {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .bio-photo img,
  .bio-section--secondary .bio-photo img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-actions {
    flex-direction: column;
  }

  /* Footer */
  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 1.85rem; }
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
}
