/*
Theme Name: LovingHands
Theme URI: https://www.lovinghands.net/
Author: Mason James
Description: Starter theme for the Loving Hands WordPress rebuild.
Version: 0.1.0
Text Domain: lovinghands
*/

:root {
  --lh-red: #ed1c24;
  --lh-deep-red: #a80303;
  --lh-oxblood: #8b0000;
  --lh-charcoal: #3b3a3a;
  --lh-black: #000000;
  --lh-white: #ffffff;
  --lh-gray: #f7f7f7;
  --lh-blue: #1896d1;
  --lh-content-width: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lh-charcoal);
  background: var(--lh-white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--lh-deep-red);
}

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

.wrap {
  width: min(calc(100% - 2rem), var(--lh-content-width));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid rgba(59, 58, 58, 0.12);
  background: var(--lh-white);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
}

.site-title a {
  color: var(--lh-black);
  text-decoration: none;
}

.site-description {
  margin: 0.35rem 0 0;
  color: #666;
  font-size: 0.95rem;
}

.main-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation a {
  text-decoration: none;
  font-weight: 600;
}

.hero {
  background: linear-gradient(135deg, var(--lh-black), var(--lh-charcoal));
  color: var(--lh-white);
  padding: 5rem 0;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1;
}

.hero__lead {
  max-width: 45rem;
  margin: 1rem 0 0;
  font-size: 1.1rem;
}

.hero__actions,
.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--lh-red);
  color: var(--lh-white);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.button--secondary {
  background: transparent;
  color: var(--lh-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
  padding: 4rem 0;
}

.section--muted {
  background: var(--lh-gray);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(59, 58, 58, 0.08);
  border-radius: 1rem;
  background: var(--lh-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.entry-content,
.entry-summary {
  max-width: 52rem;
}

.entry-title,
.section-title {
  margin-top: 0;
  color: var(--lh-oxblood);
  line-height: 1.1;
}

.site-footer {
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.9);
  background: var(--lh-black);
}

.site-footer a {
  color: var(--lh-white);
}

@media (max-width: 47.99rem) {
  .site-header__inner,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
