/* Senior Scenter — shared site styles */
:root {
  --cream: #faf5ea;
  --cream-dark: #f0e6d2;
  --forest: #3f5e42;
  --forest-dark: #2c4230;
  --brown: #7a5230;
  --gold: #d99a3d;
  --gold-dark: #bf822c;
  --ink: #2e2a24;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(46, 42, 36, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Quicksand', 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', 'Quicksand', sans-serif;
  color: var(--forest-dark);
  margin-top: 0;
}

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; display: block; border-radius: var(--radius); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top banner */
.top-banner {
  background: var(--forest-dark);
  color: var(--cream);
  text-align: center;
  font-size: 0.85rem;
  padding: 6px 12px;
}

/* Header */
header.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 56px; width: auto; border-radius: 0; }

.brand-text h1 { font-size: 1.3rem; margin: 0; line-height: 1.1; }
.brand-text span { font-size: 0.78rem; color: var(--brown); display: block; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--forest-dark);
  border-bottom: 2px solid var(--gold);
}

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 90px 24px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,66,48,0.55), rgba(44,66,48,0.75));
}

.hero-content { position: relative; max-width: 760px; margin: 0 auto; }
.hero h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 10px; }
.hero p { font-size: 1.15rem; margin-bottom: 26px; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: var(--gold-dark); transform: translateY(-2px); color: var(--ink); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--forest-dark); }

/* Section cards grid (homepage) */
.section-intro {
  text-align: center;
  padding: 60px 24px 10px;
  max-width: 720px;
  margin: 0 auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 30px 24px 70px;
  max-width: 1150px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease;
}
.card:hover { transform: translateY(-4px); }

.card img { border-radius: 0; height: 150px; object-fit: cover; width: 100%; }

.card-body { padding: 18px 18px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card-body p { font-size: 0.92rem; flex: 1; color: #4a453d; }
.card-body .btn { align-self: flex-start; margin-top: 12px; padding: 9px 20px; font-size: 0.85rem; }

/* Generic content section */
.section {
  padding: 60px 24px;
}
.section.alt { background: var(--cream-dark); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 30px auto 0;
}
.gallery img { height: 160px; object-fit: cover; width: 100%; }

.badge {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.info-box {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.give-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 30px auto 0;
}
@media (max-width: 800px) { .give-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .give-grid { grid-template-columns: 1fr; } }

.give-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}
.give-card h4 { margin-bottom: 8px; }

/* Coming soon banner */
.coming-soon {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  padding: 10px;
  font-size: 0.9rem;
}

/* Contact form (static mockup) */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 640px;
  margin: 20px auto 0;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #d8cfbe;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
}
.contact-form .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .contact-form { grid-template-columns: 1fr; } }

/* Footer */
footer.site-footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 46px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }

footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
footer a { color: var(--cream-dark); }
footer a:hover { color: var(--gold); }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 6px; }

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #cfc9b8;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
