body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow-x: hidden;
}
h1 {font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 2.7rem; line-height: 2.8rem;}

h2 {font-family: 'Montserrat', sans-serif; font-weight:700;
    font-size: 2rem;
}

/* Snowflake overlay */
.snowflake-overlay {
  background: url('images/snowflakes.png') center/cover no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 3;
  pointer-events: none;
}

/* Header */
.site-header {
  background-color: #5a002f;
  padding: 15px 25px;
  position: relative;
  z-index: 2;
}

.site-logo {
  height: 100px;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-message {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-weight: 900;
  font-size: 2.2rem;
  z-index: 4;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

/* Section Separators */
.section-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 5px 0;
  font-size: 40px;
  color: #b3004c;
  z-index: 3;
  position: relative;
}
.section-separator img {}

/* Content Sections */
.content-section {
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.material-icons-outlined {img:vertical-align:center;}

.warm-grey {
  background-color: #e5e1dc;
}

.alt-grey {
  background-color: #d6d2cd;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.section-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  z-index:4;
}
section img {z-index:4;}

.section-text {
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: left;
}

/* Larger screens */
@media (min-width: 768px) {
  .section-body {
    flex-direction: row;
    align-items: center;
  }

  .section-photo {
    width: 50%;
  }

  .section-text {
    width: 50%;
  }
}

/* Footer */
.site-footer {
  background-color: #2b2b2b;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-line {
  margin: 10px 0;
  font-size: 1.8rem;
}
.footer-line-med {
  margin: 10px 0;
  font-size: 1.2rem;
}

.facebook-icon {
  height: 47px;
  vertical-align: middle;
  margin-left: 10px;
}

.small-text {
  font-size: 0.8rem;
}

.center-text {
  text-align: center;
}
