* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #1b1b1b;
  background: #ffffff;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: #0d2340;
  color: #ffffff;
  padding: 1rem 0;
}

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

.site-title {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: #ffffff;
}

.hero {
  padding: 5rem 0;
  background:
    linear-gradient(rgba(13,35,64,.72), rgba(13,35,64,.72)),
    url('/assets/img/hero.jpg') center/cover no-repeat;
  color: #ffffff;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
}

.hero p {
  max-width: 48rem;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background: #c62828;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.35rem;
  font-weight: 700;
}

.button-secondary {
  background: transparent;
  border: 2px solid #ffffff;
}

.section,
.page-section {
  padding: 3rem 0;
}

.event-card,
.event-list-item {
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: #fafafa;
}

.values-list {
  padding-left: 1.25rem;
}

.site-footer {
  background: #0d2340;
  color: #ffffff;
  padding: 2rem 0;
  margin-top: 3rem;
}
