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

:root {
  --green: #0b5d47;
  --dark-green: #073f32;
  --gold: #d9a441;
  --cream: #f7f3e9;
  --white: #ffffff;
  --text: #24312c;
  --muted: #6c7973;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  padding-bottom: 90px;
}

.app-header {
  background: var(--green);
  color: white;
  padding: 22px 20px;
  text-align: center;
}

.organization-name {
  font-weight: 800;
  letter-spacing: 1.5px;
}

.tagline {
  color: #e8c46d;
  font-size: 0.8rem;
  margin-top: 4px;
  letter-spacing: 2px;
}

.app-container {
  width: min(680px, 92%);
  margin: auto;
}

.welcome {
  padding: 35px 5px 25px;
}

.eyebrow {
  color: var(--gold);
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
}

.welcome h1 {
  color: var(--dark-green);
  font-size: 2rem;
  margin: 6px 0 10px;
}

.welcome p:last-child {
  color: var(--muted);
}

.quick-actions {
  display: grid;
  gap: 14px;
}

.app-card {
  display: grid;
  grid-template-columns: 48px 1fr 25px;
  gap: 12px;
  align-items: center;

  background: var(--white);
  color: inherit;
  text-decoration: none;

  padding: 20px;
  border-radius: 16px;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.app-card:active {
  transform: scale(0.98);
}

.card-icon {
  font-size: 1.8rem;
}

.app-card h2 {
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.app-card p {
  color: var(--muted);
  font-size: 0.87rem;
}

.arrow {
  color: var(--gold);
  font-size: 2rem;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  background: white;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  padding:
    10px
    10px
    calc(10px + env(safe-area-inset-bottom));

  border-top: 1px solid #e4e4e4;
}

.bottom-nav a {
  text-decoration: none;
  color: var(--green);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 3px;
}

.bottom-nav span {
  font-size: 1.25rem;
}

.bottom-nav small {
  font-size: 0.7rem;
}
.content-section {
  padding: 45px 5px;
  border-top: 1px solid rgba(11, 93, 71, 0.1);
}

.content-section h2 {
  color: var(--dark-green);
  margin: 5px 0 10px;
}

.content-section > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-item,
.announcement-card,
.event-card {
  background: white;
  border-radius: 15px;
  padding: 18px;

  display: flex;
  gap: 15px;
  align-items: flex-start;

  color: inherit;
  text-decoration: none;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.feature-item span,
.announcement-card span {
  font-size: 1.6rem;
}

.feature-item h3,
.event-card h3,
.announcement-card h3 {
  color: var(--green);
  margin-bottom: 4px;
}

.feature-item p,
.event-card p,
.announcement-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.event-date {
  background: var(--green);
  color: white;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: bold;
}

.primary-action {
  display: inline-block;

  background: var(--gold);
  color: var(--dark-green);

  text-decoration: none;
  font-weight: bold;

  padding: 14px 20px;
  border-radius: 12px;
}