/*
Theme Name: Front Range Digital Holdings
Theme URI: https://frii.com
Author: Front Range Digital Holdings
Description: Clean landing page theme for Front Range Digital Holdings
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@300;400;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2744;
  --blue: #2c4a8a;
  --light-blue: #4a72c4;
  --accent: #c8a84b;
  --off-white: #f5f3ef;
  --text: #2a2a2a;
  --muted: #6b7280;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--off-white);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Header ── */
.site-header {
  background-color: var(--navy);
  padding: 1.5rem 2rem;
  border-bottom: 3px solid var(--accent);
}

.site-header .inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header .logo-mark {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.site-header .site-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
}

.hero-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(26, 39, 68, 0.10);
  padding: 3.5rem 3rem;
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 4px solid var(--accent);
}

.hero-card h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-card .tagline {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-card .coming-soon {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(44, 74, 138, 0.25);
}

.btn-primary:hover {
  background: var(--light-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(44, 74, 138, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Email selector page ── */
.email-selector .hero-card h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.email-selector .hero-card .tagline {
  margin-bottom: 2rem;
}

.email-selector .btn-group {
  flex-direction: column;
  align-items: center;
}

.email-selector .btn {
  width: 100%;
  max-width: 280px;
  text-align: center;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

@media (max-width: 480px) {
  .hero-card {
    padding: 2.5rem 1.5rem;
  }
  .hero-card h1 {
    font-size: 1.6rem;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}
