
body h1,
body h2 {
    font-family: 'Playfair Display', 'Bodoni MT', Didot, 'Times New Roman', Times, serif;
}

body *:not(h1):not(h2) {
    font-family: 'Lato', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.logo {
    font-family: 'Playfair Display', 'Bodoni MT', Didot, 'Times New Roman', Times, serif;
    font-size: 24px;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("../backgrounds/lake.webp") center center / cover no-repeat;
  height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2rem;
  color: white;
}

@media (min-width: 640px) {
  .hero {
    padding: 0 5rem;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); 
}

.hero-content {
  position: relative;
  max-width: 90%;
  z-index: 2;
}

@media (max-width: 1023px) {
  .hero h1 {
  font-size: 2rem;
}
  .hero p.lead {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .hero-content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero p.lead {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.hero p.subtext a {
  color: #cce4ff; 
  text-decoration: underline;
}

@media  (min-width: 768px) {
  .hero h1 {
    font-size: 64px;
  }
  .hero p.lead {
    font-size: 1.5rem;
  }
}

.btn-hero {
  display: inline-block;
  background: #2E6F40; 
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
}

.btn-hero:hover {
  background: #265A34; 
  color: blanchedalmond;
}

.read-more {
  display: inline-block;
  background: #2E6F40; 
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
}
.read-more:hover {
  background: #265A34; 
  color: blanchedalmond;
}