/* ===================================
   BLOOMING HEARTS, INC. - STYLESHEET
   =================================== */

/* CSS Variables */
:root {
  --mint: #a7d7b5;
  --mint-dark: #78b48f;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --paper: #ffffff;
  --gray-50: #f9fafb;
  --green-script: #2e7d32;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--ink);
  background: var(--paper);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* ===================================
   HERO SECTION
   =================================== */
header.hero {
  background:
    radial-gradient(circle at top, rgba(167,215,181,0.3), transparent 55%),
    linear-gradient(180deg, rgba(167,215,181,0.16) 0%, rgba(167,215,181,0.04) 100%);
  padding: 56px 0 40px;
  text-align: center;
}

.logo {
  width: 280px;
  max-width: 80vw;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
}

h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin: 18px 0 4px;
  line-height: 1.1;
}

.subtitle {
  font-family: "Brush Script MT", "Lucida Handwriting", "Segoe Script", cursive;
  color: var(--green-script);
  font-size: clamp(22px, 3.2vw, 30px);
  margin: 2px 0 10px;
}

.tagline {
  color: var(--ink-soft);
  font-size: clamp(16px, 2.4vw, 18px);
  max-width: 820px;
  margin: 0 auto;
}

.cta {
  margin-top: 22px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .05s ease, box-shadow .2s ease,
    background-color .15s ease, color .15s ease;
  display: inline-block;
}

.btn.primary {
  background: var(--mint);
  color: #0b3b27;
  box-shadow: 0 10px 30px rgba(167,215,181,0.7);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(167,215,181,0.9);
}

.btn.ghost {
  border: 2px solid var(--mint-dark);
  color: var(--mint-dark);
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(167,215,181,0.12);
}

/* ===================================
   SECTIONS
   =================================== */
section {
  padding: 56px 0;
}

section.alt {
  background: var(--gray-50);
}

h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 6px;
}

p {
  line-height: 1.6;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ===================================
   MISSION SPLIT LAYOUT
   =================================== */
.split {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.1fr 1fr;
  }
}

.hero-photo {
  width: 100%;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 40px rgba(15,23,42,0.25);
  object-fit: cover;
  max-height: 420px;
}

blockquote {
  border-left: 4px solid var(--mint-dark);
  padding: 10px 16px;
  margin: 8px 0 0;
  background: #f3faf5;
  border-radius: 10px;
  font-style: italic;
  color: #065f46;
}

/* ===================================
   VALUES GRID
   =================================== */
.values-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 22px;
}

@media (min-width: 720px) {
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}

.value-card h3 {
  margin: 4px 0 8px;
  font-size: 18px;
}

.value-card p {
  margin: 0;
  font-size: 15px;
}

/* ===================================
   COMMUNITY PHOTOS GRID
   =================================== */
.community-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 22px;
}

@media (min-width: 880px) {
  .community-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.photo-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 32px rgba(15,23,42,0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.photo-card p {
  padding: 12px 14px 14px;
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ===================================
   PILLS & BADGES
   =================================== */
.pill {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  padding: 28px 0 40px;
  background: #0f172a;
  color: #e5e7eb;
}

footer a {
  color: #bfe6cd;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footgrid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footgrid {
    grid-template-columns: 2fr 1fr;
  }
}

.small {
  font-size: 14px;
  color: #94a3b8;
}

footer h3 {
  margin: 0 0 6px;
}

footer p {
  margin: 0;
}

footer .small {
  margin: 6px 0 0;
}
