@import url('https://fonts.googleapis.com/css2?family=Amarante&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Georgia', serif;
  color: #f9f6f2;
}

.background-overlay {
  background-image: url('main-image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  backdrop-filter: brightness(0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  text-align: center;
  padding: 3rem 1rem 1rem;
  background-color: rgba(30, 20, 10, 0.6);
}

header h1 {
  font-size: 3rem;
  margin: 0;
  font-family: amarante, georgia, serif;
}

.tagline {
  font-style: italic;
  margin-top: 0.5rem;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.feature {
  background-color: rgb(78 77 77 / 33%);
  border: 2px solid #d8cbb3;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background-color: rgb(20 20 20 / 75%);
}

.feature h2 {
  margin-top: 0;
  color: #ffe8c2;
  font-family: amarante, georgia, serif;
}

.feature a {
  display: inline-block;
  margin-top: 1rem;
  color: #ffd9a0;
  text-decoration: none;
  font-weight: bold;
}

.feature a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(30, 20, 10, 0.6);
}