/* ============================================================= */
/*  The Lost Coin – Final Clean CSS (Flexbox)      */
/* ============================================================= */

:root {
  --navy: #1c3d5a;
  --plum: #8a6d9e;
  --cream: #f8f5f0;
  --gold: #b89f6e;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: #333;
  line-height: 1.7;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
}

/* Navbar & Buttons */
.bg-navy { background-color: var(--navy) !important; }
.btn-plum {
  background: var(--plum);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-plum:hover { background: #6d5c8a; transform: translateY(-3px); }

/* Hero */
.hero {
  background: linear-gradient(rgba(28,61,90,0.88), rgba(28,61,90,0.88)), url('../img/lynette.jpg') center/cover no-repeat;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Sections */
.section-pad { padding: 90px 0; }

/* Cards – pure Flexbox */
.values, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.value-card, .service-card {
  flex: 1 1 260px;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
}

/* Footer */
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  footer .container { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Small tweaks */
blockquote { font-style: italic; opacity: 0.95; }