:root {
  --primary: #1e3a5f;
  --accent: #f2a71b;
  --light-bg: #f7f8fa;
  --text: #23272f;
  --white: #ffffff;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
}

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

/* Header */
.site-header {
  background: var(--primary);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  font-size: 1.4rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary), #2c5282);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

/* Sections */
.section {
  padding: 4rem 1.5rem;
}

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

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Events */
.events-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.events-list li {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.2rem;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Contact form */
#contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  gap: 0.5rem;
}

#contact-form label {
  font-weight: 600;
  margin-top: 0.5rem;
}

#contact-form input,
#contact-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

#contact-form button {
  margin-top: 1rem;
  align-self: flex-start;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 1.5rem;
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }
}
