body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fcfbf9;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  position: fixed;
  width: 100%;
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

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

.logo-cross {
  font-size: 24px;
}

/* HERO */
.hero {
  margin-top: 80px;
  height: 65vh;
  background: url('dried-leaves-gray-blank-background.jpg') center/cover;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-family: 'Spectral';
}

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

.section-title {
  font-family: 'Spectral';
  margin-bottom: 30px;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 20px;
}

/* CALENDAR */
.event {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* MAP */
.map {
  width: 100%;
  height: 300px;
  margin-top: 20px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
}