/* General Styles */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #faf7f2;
}

/* Hero Section */
.hero {
  background: 
    linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), 
    url('https://images.unsplash.com/photo-1527169402691-a0a6b89bb2d2?auto=format&fit=crop&w=1500&q=80') 
    no-repeat center center/cover;
  color: #4a1c1c; /* Rich sherry text colour */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #4a1c1c; /* Dark sherry red */
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #5c2a2a; /* Slightly softer sherry tone */

}

.cta-button {
  background-color: #8c1c13; /* Sherry red */
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #a52a1d;
}

/* About Section */
.about {
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

/* Signup Section */
.signup {
  background-color: #f1e8e6;
  padding: 60px 20px;
  text-align: center;
}

.signup h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.signup form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signup input[type="email"] {
  padding: 10px;
  width: 250px;
  max-width: 90%;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.signup button {
  background-color: #8c1c13;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup button:hover {
  background-color: #a52a1d;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #e2b497;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    background: 
      linear-gradient(rgba(60, 30, 20, 0.7), rgba(60, 30, 20, 0.7)), 
      url('https://images.unsplash.com/photo-1527169402691-a0a6b89bb2d2?auto=format&fit=crop&w=800&q=80') 
      no-repeat center center/cover;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}



