@font-face {
  font-family: "Montserrat";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  src:
  local('Montserrat Regular'),
  url('./fonts/Montserrat-VariableFont_wght.ttf') format('truetype'),
  url('./fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype'),
}

.hero {
  position: relative;
  min-height: 10vh;               /* adjust as needed */
  display: flex;
  align-items: center;
  color: #000;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;                       /* top:0; right:0; bottom:0; left:0; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(1.05);
  transform: scale(1.03);
  z-index: 0;
}

/* Content wrapper sits above the background */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.hero__inner { max-width: 800px; margin: 0 auto; }

.hero__title {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 0.6rem;
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  margin: 0 0 1.25rem;
  opacity: 0.95;
}


/* Responsive tweaks */
@media (min-width: 900px) {
  .hero__content { padding: 5rem 1rem; text-align: left; }
  .hero__inner { margin-left: 0; }
}


.bg-image {
  background-image: url('/images/weidenbaum-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
  background-attachment: fixed;  
  background-color: rgb(245, 245, 245);
  background-blend-mode: overlay;
}

.bg-image--dimmed {
  /* overlay with semi-transparent color for blend effect */
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.901);  /* adjust opacity as needed */
}

.negative-top-margin {
  margin-top: -120px;
}

.background {
  color: #2f3b2f;
  color: #eef6f1;
}

.md-container {
  background-image: url('/images/willow_tree.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
  background-attachment: fixed;  
  background-color: rgba(245, 245, 245, 0.85);
  background-blend-mode: overlay;
}

:root {
  --md-text-font: "Montserrat"; 
  --green-soft: #9bbf9b;
  --green-muted: #6f8f75;
  --green-dark: #4f6b56;
  --warm-accent: #e6c7a6;
  --background-light: #f4faf6;
  --surface-white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --radius: 1rem;
}

/* Slightly transparent white background for list cards */
.grid.cards li {
  background-color: rgba(255, 255, 255, 0.5);
}

.md-nav--secondary .md-nav__title {
  background-color: rgba(255, 255, 255, 0.0);
}
