/* styles.css – Jan Footlik website 2026 */

:root {
  --brown: #81623E;
  --tan: #D8C3A5;
  --cream: #F5F3EF;
  --muted-gold: #C7B27A;
  --forest: #3F5F3F;
  --text-dark: #1F2A21;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

/* Emergency Banner – now small caps */
.emergency-banner {
  width: 100%;
  background: linear-gradient(90deg, #E6CBB3, #D8C3A5);
  color: #2C1F13;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  font-variant: small-caps;
  font-size: 1.15rem;
  padding: 0.6rem 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Insurance Badge */
.insurance-note {
  position: absolute;
  right: 6%;
  top: 46vh;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 1.6rem 2.2rem;
  text-align: center;
  border-radius: 50%;
  border: 6px solid var(--muted-gold);
  box-shadow:
    0 20px 34px rgba(0,0,0,0.30),
    inset 0 4px 10px rgba(255,255,255,0.10),
    inset 0 -4px 10px rgba(0,0,0,0.30);
  width: fit-content;
  transform: rotate(10deg);
  z-index: 9998;
}

.insurance-note .badge-approve {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  margin-top: 1.1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.45);
}

/* PRINT-ONLY MEDICARE/MEDICAID TEXT (Hidden by default) */
.print-badge-text {
  display: none;
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0.45rem 0;
  font-weight: 600;
  font-size: 1rem;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
}

.nav-item a {
  text-decoration: none;
  color: #3A312A;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sep {
  margin-left: 0.35rem;
  color: #6B5C4A;
  display: inline-block;
  pointer-events: none;
}

/* Hero Header */
.hero-header {
  position: relative;
  width: 100%;
  height: 55vh;
  background: linear-gradient(135deg, #D8C3A5, #B7C9AE);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.8rem;
  overflow: visible;
}

.hero-logo {
  max-width: 90px;
  height: auto;
  margin-bottom: 0.6rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.14);
}

.hero-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: white;
  z-index: 2;
  text-align: left;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  /* transform removed */
}

.hero-text h1 {
  font-size: 2rem;
  margin: 0 0 0.6rem 0;
}

.hero-text p {
  font-size: 1.05rem;
  margin: 0.4rem 0 0.8rem 0;
}

.hero-btn {
  background: var(--brown);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1.4rem;
  display: inline-block;
}

.hero-btn:hover {
  background: #C27143;
}

.hero-image img {
  max-height: 420px;
  border-radius: 10px;
  box-shadow: 0 18px 32px rgba(0,0,0,0.35);
}

/* Main Page Sections */
main {
  text-align: center;
  padding: 1.2rem;
}

section {
  background: var(--white);
  padding: 1rem 1.5rem;
  max-width: 900px;
  margin: 0.9rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Keep section headings centered everywhere */
section h2 {
  text-align: center;
}

section:nth-of-type(even) {
  background: #FAF8F5;
}

.intro h2 {
  font-size: 1.6rem;
  color: #5A4733;
  margin-bottom: 0.5rem;
}

.intro p {
  font-size: 1rem;
  color: #3A312A;
  max-width: 650px;
  margin: 0 auto 0.9rem auto;
  text-align: center;
}

/* Centered intro (for short, single-sentence sections) */
.intro-center p {
  text-align: center;
}

/* Left-justified intro (for longer explanatory paragraphs) */
.intro-left p {
  text-align: left;
}

/* About Jan Intro Formatting */
.cv-intro {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 1.6rem auto;
  line-height: 1.55;
}

/* Qualifications */
.qualifications {
  padding: 0.9rem 1rem;
}

.qualifications h2 {
  margin-bottom: 0.35rem;
}

/* Professional Background – two-column layout */
.columns {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
}

.column {
  flex: 1;
  min-width: 0;
  max-width: 48%;
  text-align: left;
}

.column h3 {
  color: var(--brown);
  margin-bottom: 0.35rem;
  text-align: center;
}

.column ul {
  list-style: none;
  padding-left: 3.5rem;
}

.column ul li::before {
  content: "• ";
  color: #C27143;
  font-weight: 700;
  margin-left: -1rem;
}

/* === Counseling page cleanup: balanced columns + clean bullets === */
.columns-balanced {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.25rem;
  align-items: flex-start;
}

.columns-balanced .column ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.35rem;   /* keeps bullets close to text */
}

.columns-balanced .column ul li::before {
  content: none;           /* turns off the custom bullet */
}

/* Paragraph under the two-column blocks (left-justified) */
.qual-after-columns {
  text-align: left;
  max-width: 760px;
  margin: 0.9rem auto 0 auto;
}

/* Benefits */
.benefits ul {
  list-style: none;
  padding-left: 9rem;
  text-align: left;
}

.benefits ul li::before {
  content: "• ";
  color: #C27143;
  font-weight: 700;
  margin-left: -1.2rem;
}

/* Default benefits: normal alignment */
.benefits-normal ul {
  padding-left: 2.5rem;
}

/* Wider layout for homepage only */
.benefits-wide ul {
  padding-left: 9rem;
}

/* Footer */
footer {
  background: var(--brown);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  margin-top: 1.2rem;
}

/* ===== CV / ABOUT JAN LIST FORMATTING ===== */
.cv-list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 3rem;
  margin-left: 0;
  text-align: left;
  line-height: 1.55rem;
  max-width: 900px;
}

/* Optional – adds a little breathing room between sections */
.cv-section {
  margin-bottom: 1.6rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-header {
    height: auto;
    padding: 1.2rem 0 2rem 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    max-height: 280px;
  }

  .insurance-note {
    right: 50%;
    transform: translateX(50%) rotate(10deg);
    top: 42vh;
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
  }

  .intro p {
    white-space: normal;
  }

  .columns {
    flex-direction: column;
  }

  .column {
    max-width: 100%;
  }

  .benefits ul {
    padding-left: 2.4rem;
  }

<style>
.sticky-phone-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4A7C59;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s;
}

.sticky-phone-button:hover {
  transform: scale(1.05);
  background: #5A8C69;
}
</style>

}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  * {
    background: none !important;
    box-shadow: none !important;
  }

  .main-nav,
  .insurance-note {
    display: none !important;
    visibility: hidden !important;
  }

  .print-badge-text {
    display: block !important;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0 1.5rem 0;
    color: #000;
  }

  section,
  .hero-content,
  .hero-header {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .hero-content {
    flex-direction: column !important;
    transform: none !important;
    text-align: center !important;
  }

  .hero-image img {
    max-width: 55%;
    height: auto;
    margin: 0 auto 1rem auto;
  }

  body {
    color: #000 !important;
  }

}
