/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f9f9f9;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 600px;
  width: 90%;
  padding: 1rem;
}

.overlay h1 {
  font-size: 5.0rem;
  margin-bottom: 0.5rem;
}

.overlay p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

input[type="email"] {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  width: 100%;
}

button {
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  background-color: #ba2525;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

#success-message {
  margin-top: 1rem;
  color: #90ee90;
  font-weight: 500;
}

.hidden {
  display: none;
}

/* Features Section */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  padding: 2rem 0;
}

/* Mobile */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }
}
.features {
  text-align: center;
  padding: 3rem 1rem;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #222;
}

.feature-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap; 
}

.feature-row li {
  text-align: center;
  flex: 0 0 200px;
}

.feature-row i {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
}

.feature-row h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-row p {
  font-size: 0.95rem;
  color: #777;
  margin: 0;
}
