/* Hero Section Specifics */
.hero-section {
  min-height: 100vh; /* Adjusted as header is removed */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Changed to push content to top and form to bottom */
  align-items: center;
  text-align: center;
  position: relative;
  color: var(--light-text-color); /* Updated to use new theme variable (dark text) */
  padding: 10vh 20px 5vh; /* Adjusted padding for top and bottom */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--dark-background-color); /* Fallback if video fails - Updated to use new theme variable */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--hero-text-color); /* Reverted to white for hero */
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 600px;
  color: var(--hero-text-color); /* Reverted to white for hero */
  margin-left: auto; /* Added */
  margin-right: auto; /* Added */
}

/* Email Signup Form Styles */
.email-signup-form {
  display: flex;
  /* justify-content: center; /* Not needed if input grows */
  align-items: center; /* Vertically align items */
  /* gap: 10px; /* Removed for combo look */
  width: 100%;
  max-width: 500px; /* Adjust as needed */
  margin-bottom: 5vh; /* Space from bottom */
  background-color: var(--background-light-primary); /* White background for the combo */
  border: 1px solid var(--background-tertiary); /* Light gray border for the combo */
  border-radius: 30px; /* Pill shape for the combo */
  overflow: hidden; /* To contain children's corners if any */
  padding: 0; /* Remove padding from container, apply to children */
  transition: border-color 0.3s ease; /* For focus effect */
}

.email-signup-form:focus-within {
  border-color: var(--accent-mono-primary); /* Darker border on focus within */
}

.email-signup-form input[type="email"] {
  flex-grow: 1;
  padding: 15px 20px;
  font-size: 1em;
  border: none; /* Removed individual border */
  background-color: transparent; /* Transparent background */
  color: var(--text-primary);
  border-radius: 0; /* Removed individual radius */
  outline: none;
}

.email-signup-form input[type="email"]::placeholder {
  color: var(--text-secondary);
}

.email-signup-form button[type="submit"] {
  background-color: transparent; /* Transparent background */
  color: var(--text-secondary);    /* Gray text to match placeholder/example */
  padding: 15px 20px; /* Consistent padding with input */
  font-size: 1em; /* Match input font size */
  text-decoration: none;
  border: none; /* Removed individual border */
  border-radius: 0; /* Removed individual radius */
  cursor: pointer;
  transition: color 0.3s ease;
  font-weight: normal; /* Normal font weight */
  white-space: nowrap; /* Prevent button text from wrapping */
}

.email-signup-form button[type="submit"]:hover {
  color: var(--text-dark-primary); /* Darker text on hover */
  /* background-color: transparent; /* Ensure no bg change on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5em;
  }
  .hero-content p {
    font-size: 1em;
  }
  /* .cta-button styles were removed from original, so not included here */
}
