:root {
  --terracotta: #c9784a;
  --terracotta-dark: #a85c33;
  --cream: #fbf3e7;
  --cream-alt: #f3e6d3;
  --sage: #7a9e7e;
  --brown: #4a3628;
  --text: #3d2f24;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brown);
  margin-top: 0;
}

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

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 3px solid var(--terracotta);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.logo {
  width: 56px;
  height: 56px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--terracotta-dark);
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--brown);
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover {
  color: var(--terracotta-dark);
  border-bottom-color: var(--terracotta);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--sage) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: #fff;
  color: var(--terracotta-dark);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Sections */
.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--cream-alt);
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--terracotta);
}

.president {
  font-style: italic;
}

/* Activities */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.activity-card {
  background: #fff;
  border: 2px solid var(--terracotta);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--brown);
  transition: background 0.2s, color 0.2s;
}

.activity-card:hover {
  background: var(--terracotta);
  color: #fff;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.info-card h3 {
  color: var(--terracotta-dark);
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
}
