/* ================================
   Estrella Horizon LLC — Base Styles
   Author: Estrella Horizon LLC
   Version: 1.0
   ================================ */

:root {
  --eh-blue: #0a4cff;
  --eh-bg: #f7f9fc;
  --eh-text: #222;
  --eh-accent: #0056ff;
  --eh-muted: #555;
  --eh-radius: 8px;
}

/* === Global Reset === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === Page Layout === */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--eh-bg);
  color: var(--eh-text);
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px;
  line-height: 1.6;
}

/* === Headings === */
h1, h2, h3 {
  font-weight: 600;
  color: var(--eh-blue);
  margin-bottom: 16px;
}

h1 {
  font-size: 2rem;
}

/* === Paragraphs === */
p {
  margin-bottom: 14px;
}

/* === Links === */
a {
  color: var(--eh-blue);
  text-decoration: none;
  transition: color 0.2s ease-in-out, text-decoration 0.2s;
}

a:hover {
  color: var(--eh-accent);
  text-decoration: underline;
}

/* === Header === */
header.page-header {
  margin-bottom: 32px;
  border-bottom: 2px solid var(--eh-blue);
  padding-bottom: 12px;
}

/* === Footer === */
footer.site-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--eh-muted);
  margin-top: 60px;
  border-top: 1px solid #ccc;
  padding-top: 12px;
}

/* === Content Section === */
main {
  background: #fff;
  border-radius: var(--eh-radius);
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* === Tagline / Subtitle === */
.tagline {
  font-style: italic;
  color: var(--eh-muted);
  margin-top: -8px;
  margin-bottom: 24px;
}

/* === Contact Line === */
.contact-line {
  font-weight: 500;
}
