@charset "utf-8";
/* DrBeverlyLawrence.com - unified fast theme (clean base) */

:root{
  --purple:#702277;
  --green:#2E7D32;
  --gold:#C9A24D;
  --bg:#ffffff;
  --ink:#111111;
  --muted:#444;
  --soft:#f6f3f8;
  --border: rgba(17,17,17,0.12);
  --shadow: 0 10px 30px rgba(0,0,0,0.10);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

a{ color: var(--purple); }
a:hover{ text-decoration: underline; }

.container{
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

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

/* =========================
   HEADER
   ========================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background:#fff;
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--ink);
  min-width: 280px;
}

.brand-logo{
  width:44px;
  height:44px;
  border-radius: 14px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text strong{ display:block; font-size: 0.98rem; letter-spacing:0.2px; }
.brand-sub{ display:block; font-size: 0.82rem; color: var(--muted); }

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

.nav a{
  text-decoration:none;
  color: var(--ink);
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 10px;
  white-space:nowrap;
}

.nav a:hover{
  background: rgba(112,34,119,0.08);
  color: var(--purple);
  text-decoration:none;
}

/* Fix: header "All Links" button text must stay white */
.nav a.btn-primary,
.nav a.btn-primary:visited,
.nav a.btn-primary:hover,
.nav a.btn-primary:active,
.nav a.btn-primary:focus{
  color:#fff !important;
  text-decoration:none;
}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius: 12px;
  padding:10px 12px;
}

.burger{
  display:block;
  width:20px;
  height:2px;
  background: var(--ink);
  position:relative;
}
.burger:before,.burger:after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background: var(--ink);
}
.burger:before{ top:-6px; }
.burger:after{ top:6px; }

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 650;
  font-size: 0.96rem;
  gap: 8px;
}

.btn-small{ padding: 9px 12px; border-radius: 12px; font-size: 0.92rem; }

.btn-primary{
  background: var(--purple);
  color:#fff;
  border-color: rgba(112,34,119,0.6);
}
.btn-primary:hover,
.btn-primary:focus{
  color:#fff;
  filter: brightness(0.96);
  text-decoration:none;
}

.btn-outline{
  background:#fff;
  color: var(--purple);
  border-color: rgba(112,34,119,0.35);
}
.btn-outline:hover{ background: rgba(112,34,119,0.07); text-decoration:none; }

.btn-gold{
  background: var(--gold);
  color:#1a1206;
  border-color: rgba(201,162,77,0.65);
}
.btn-gold:hover{ filter: brightness(0.98); text-decoration:none; }

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 14px;
}

/* =========================
   HERO
   ========================= */
.hero{
  background: linear-gradient(180deg, rgba(112,34,119,0.10), rgba(46,125,50,0.05));
  border-bottom: 1px solid var(--border);
}

.hero-inner{
  display:grid;
  grid-template-columns: 64% 36%;
  gap: 24px;
  padding: 46px 0;
}

.kicker{
  margin:0 0 10px 0;
  font-weight: 750;
  color: var(--green);
  letter-spacing:0.4px;
  text-transform:uppercase;
  font-size: 13px;
}

.hero h1{
  margin:0 0 10px 0;
  font-size: 2.25rem;
  line-height: 1.12;
}

.lead{
  margin: 0 0 16px 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 70ch;
}

.hero-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  align-self:start;
}

.card-title{ margin:0 0 10px 0; font-size: 1.05rem; }
.checklist{ margin:0; padding-left: 18px; color: var(--muted); }

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

.section-alt{
  background: linear-gradient(180deg, rgba(112,34,119,0.06), rgba(46,125,50,0.04));
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.section h2{ margin:0 0 10px 0; font-size: 1.65rem; }
.section-lead{ margin: 0 0 20px 0; color: var(--muted); max-width: 76ch; }

.grid3{
  display:grid;
  grid-template-columns: 33.333% 33.333% 33.333%;
  gap: 16px;
}

.grid2{
  display:grid;
  grid-template-columns: 50% 50%;
  gap: 16px;
}

.card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.card h3{ margin:0 0 8px 0; font-size: 1.12rem; }
.card p{ margin:0 0 12px 0; color: var(--muted); }

/* =========================
   BIO + COLUMNS
   ========================= */
.bio-wrap{
  display:flex;
  gap: 16px;
  align-items:flex-start;
}

.bio-photo{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 6px solid var(--gold);
  overflow:hidden;
  flex: 0 0 auto;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.35);
  background:#fff;
}

.bio-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dreamweaver-safe: percentages, not fr */
.bio-columns{
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 18px;
  margin-top: 18px;
}

.bio-col h3{
  margin: 18px 0 10px 0;
  font-size: 1.12rem;
}

.bio-list{
  margin: 0 0 14px 0;
  padding-left: 18px;
  color: var(--muted);
}
.bio-list li{ margin: 0 0 6px 0; }

/* =========================
   QUICK LINKS (hero-card lists)
   ========================= */
.quick-links{
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0 0;
}

.quick-links li{ margin: 0 0 6px 0; }

.quick-links a{
  color: var(--purple);
  text-decoration: none;
  font-weight: 650;
}

.quick-links a:hover{ text-decoration: underline; }

/* =========================
   TESTIMONIAL IMAGE CONTROL
   ========================= */
.testimonial-image{
  text-align: center;
  margin: 18px 0;
}

.testimonial-image img{
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.testimonial-image.small img{ max-width: 300px; }

/* Grid list (percent-based, no 1fr) */
.testimonial-image-list{
  list-style:none;
  padding-left:0;
  margin: 10px 0 0 0;
  display:grid;
  grid-template-columns: 100%;
  gap: 10px;
}

.testimonial-image-list img{
  width:100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

@media (min-width: 901px){
  .testimonial-image-list{ grid-template-columns: 50% 50%; }
}

/* =========================
   SITE MAP LISTS
   ========================= */
.site-links{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0 0;
}
.site-links li{ margin: 6px 0; }
.site-links a{
  color: var(--purple);
  text-decoration: none;
}
.site-links a:hover{ text-decoration: underline; }

/* Buttons inside site-links must stay white */
.site-links a.btn-primary,
.site-links a.btn-primary:visited,
.site-links a.btn-primary:hover,
.site-links a.btn-primary:active,
.site-links a.btn-primary:focus{
  color:#fff !important;
}

/* =========================
   SPEAKER / EVENT IMAGES
   ========================= */
.event-image{
  display:block;
  max-width:100%;
  height:auto;
  margin-top: 8px;
  border-radius: 8px;
}

/* Use these two classes for consistent sizing */
.event-portrait{
  width: 260px !important;
  max-width: 260px !important;
}
.event-logo{
  width: 180px !important;
  max-width: 180px !important;
}

/* =========================
   FOOTER
   ========================= */
footer{
  background-color: #301334;
  color: #FFFFFF;
  padding: 30px 16px;
  margin-top: 40px;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  flex-wrap:wrap;
  gap: 24px;
  font-size: 0.9rem;
}

.footer-inner > div{ flex: 1 1 220px; }

.footer-inner h4{
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Footer link colors: always light */
footer a,
footer a:visited{
  color: #F0E9FF;
  text-decoration: none;
}
footer a:hover,
footer a:focus{
  text-decoration: underline;
}

/* Lists in footer */
.footer-links{
  list-style:none;
  padding-left:0;
  margin:0;
}
.footer-links li{ margin-bottom: 4px; }

.footer-bottom{
  text-align:center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: #CCCCCC;
}

/* Also protect .site-links if used in footer */
footer .site-links a,
footer .site-links a:visited{
  color:#F0E9FF;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 100%; }
  .grid3{ grid-template-columns: 100%; }
  .grid2{ grid-template-columns: 100%; }
  .bio-columns{ grid-template-columns: 100%; }

  .nav-toggle{ display:inline-flex; }

  .nav{
    position:absolute;
    top: 64px;
    right: 4vw;
    background:#fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    min-width: 230px;
  }
  .nav.open{ display:flex; }
  .nav a{ padding: 10px 12px; }

  .bio-wrap{ flex-direction:column; }
  .bio-photo{ width: 110px; height:110px; }
}

/* Utilities */
.mt-0{ margin-top:0 !important; }


.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}
.badge{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,0.12);
  background: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  color: var(--muted);
}
.mini-cta{ margin-top: 12px; }

