/* Global Styles */
:root {
  --color-charcoal: #36454f;
  --color-orange: #fb8b24;
  --color-cream: #faf0e6;
  --color-white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Hero Section */
.hero-bg {
  background-image: linear-gradient(
      180deg,
      rgba(250, 240, 230, 0.9) 0%,
      rgba(250, 240, 230, 0.6) 50%,
      rgba(250, 240, 230, 1) 100%
    ),
    url("../Gemini_Generated_Image_j35sx1j35sx1j35s.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Buttons */
.btn-primary {
  transition: all 0.3s ease;
  background-color: var(--color-orange);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #e57a1c; /* Slightly darker orange */
  box-shadow: 0 10px 15px -3px rgba(251, 139, 36, 0.3),
    0 4px 6px -4px rgba(251, 139, 36, 0.2);
}

/* Feature Cards */
.feature-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(54, 69, 79, 0.05); /* Soft charcoal shadow */
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(54, 69, 79, 0.1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 1rem;
  background-color: rgba(251, 139, 36, 0.1); /* Light orange */
  color: var(--color-orange);
  margin-bottom: 1.5rem;
}

/* Waitlist Section */
.waitlist-container {
  background-color: var(--color-white);
  border: none;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(54, 69, 79, 0.15);
  max-width: 32rem; /* Slightly narrower for better focus */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 20;
}

@media (min-width: 640px) {
  .waitlist-container {
    padding: 3.5rem;
  }
}

/* CTA Section */
.cta-bg {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  margin: 4rem auto;
  border-radius: 2rem;
  max-width: 80rem; /* max-w-7xl equivalent */
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(54, 69, 79, 0.3);
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-charcoal);
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Forms */
.input-field {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 2px solid rgba(54, 69, 79, 0.1); /* Softer border */
  background-color: #f9fafb; /* Very light gray background */
  color: var(--color-charcoal);
  font-size: 1.125rem; /* text-lg */
  width: 100%; /* Full width */
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
}

.input-field:focus {
  border-color: var(--color-orange);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(251, 139, 36, 0.1);
}

.input-field::placeholder {
  color: rgba(54, 69, 79, 0.4);
}

.btn-submit {
  width: 100%;
  background-color: var(--color-orange);
  color: white;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  font-size: 1.125rem; /* text-lg */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(251, 139, 36, 0.2);
}

.btn-submit:hover {
  background-color: #e57a1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(251, 139, 36, 0.3);
}
