.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.section {
  padding: 1rem 2rem;
}

.section::before {
  content: "";
  display: block;
  width: 80%;
  margin: 0 auto 2rem;
  border-top: 5px solid #e0ddd7;
}

.section:first-of-type::before {
  display: none;
}

body {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1; /* ALL pages push footer to bottom, not just contact */
}

main.contact-page {
  padding-bottom: 2rem;
}

#footer {
  height: auto;
  flex-shrink: 0; /* prevent footer from being squished */
}


/* Shared fade-up entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}