/* General Typography */
body {
  font-family: 'Inter', 'Lato', sans-serif;
  color: #3B261B;
  background-color: #F9F7F1;
}

/* Hero Section */
.hero-section {
  background-color: #F9F7F1; /* Light earthy background */
  background-image: url('https://yourdomain.com/path-to-hero-banner.png'); /* Your uploaded banner */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-section h1 {
  font-size: 48px;
  color: #3B261B;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-section p {
  font-size: 20px;
  color: #A47449;
  margin-bottom: 20px;
}

.hero-section a.button {
  background-color: #A47449;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.hero-section a.button:hover {
  background-color: #8B5C3D;
}

/* Footer */
footer {
  background-color: #3B261B;
  color: #F9F7F1;
}

footer a {
  color: #F9F7F1;
}

/* Newsletter Form */
form input[type="email"] {
  padding: 10px;
  border-radius: 4px;
  border: none;
  width: 250px;
}

form button {
  background-color: #A47449;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }
  
  .hero-section p {
    font-size: 16px;
  }
}
