* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: #2F2F2F;
}

#landing {
  position: relative;
  height: 100vh;
  background: url('/images/pawleys-17.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#landing-footer {
  position: absolute;
  bottom: 0;
  padding: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: rgba(240, 240, 240, .8);
  font-family: 'Playfair Display', serif;
}

#landing #overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#landing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  height: 100vh;
}

#landing-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
}

#landing-photo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

#landing-quote {
  font-style: italic;
  font-size: 1.1rem;
  padding: 1rem;
  color: #2F2F2F;
  border-radius: 5px;
  border-left: 10px solid #C49A5B;
  padding-left: 1rem;
  opacity: 0.95;
  max-width: 400px;
  background-color: rgba(244, 237, 227, 0.8);

}

#landing-content #portrait {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  margin-bottom: 2.5rem;
}

/* Story Sections */
main {
  max-width: 900px;
  margin: 0 auto;
}

.story {
  padding: 3rem;
}

.story.alt {
  background: #F4EDE3;
  padding: 3rem;
}

.story h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1E4023;
}

.story-photo {
  max-width: 100%;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.story p,
.story ul,
.story blockquote {
  margin-bottom: 1rem;
}

.story ul {
  padding-left: 1.2rem;
}

.story blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #C49A5B;
  padding-left: 1rem;
}
