/* ============================
   Custom Styles for SaraRands.com
   Gentle, warm, therapist-friendly aesthetic
================================ */

/* ---- Global Typography ---- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  padding-bottom: 4rem;
}

/* ---- Headings ---- */
h1, h2, h3 {
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

/* ---- Accent Color ---- */
:root {
  --accent-color: #7a8c6e; /* soft sage green */
}

a {
  color: var(--accent-color);
}

a:hover {
  text-decoration: underline;
}

/* ---- Paragraphs ---- */
p {
  margin-bottom: 1.2rem;
}

/* ---- Lists ---- */
ul {
  margin-bottom: 1.5rem;
  padding-left: 1.4rem;
}

li {
  margin-bottom: 0.6rem;
}

/* ---- Blockquotes ---- */
blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
  color: #555;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ---- Page Width ---- */
.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 1rem;
}

/* ---- Section Spacing ---- */
section {
  margin-bottom: 3rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid #eee;
}

.nav-left a {
  margin-right: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-left a:hover {
  text-decoration: underline;
}

.site-name {
  font-weight: 700;        /* More visual presence */
  font-size: 1.4rem;       /* Increase size (adjust as needed) */
  color: #444;
  letter-spacing: 0.3px;   /* Subtle polish */
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .nav-left {
    margin-bottom: 0.75rem;
  }
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #e5e5e5;
  line-height: 1.6;
}

.site-footer p {
  margin: 0.35rem 0;
}

.footer-name {
  font-size: 1rem;
  color: #444;
}

.footer-copy {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #888;
}

.portrait-img {
  width: 260px;
  border-radius: 8px;
  float: right;
  margin: 0 0 1.5rem 1.5rem;
}

.portrait-right {
  float: right;
  width: 260px;
  max-width: 40%;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.speaking-img {
  float: right;
  max-width: 320px;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

@media (max-width: 700px) {
  .portrait-right,
  .speaking-img {
    float: none !important;
    display: block;
    margin: 0 auto 1.5rem auto !important;
    width: 70%;
    max-width: 300px;
    }
  }