:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --dark-bg: #212529;
  --light-bg: #f8f9fa;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-bg);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

/* Hero Section Styling */
.hero-section {
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2940&auto=format&fit=crop") no-repeat center center;
  background-size: cover;
  position: relative;
  color: white;
  padding: 10rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-cta-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* General Section Styling */
section {
  padding: 6rem 0;
}

.section-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section Icons */
.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Waitlist Form Styling */
.waitlist-form {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 10px;
}

/* Problem Section Icons */
.problem-list li {
  list-style-type: none;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.problem-list li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

:root {
  --primary-color: #8B806E;
  /* Warm Taupe */
  --secondary-color: #8F9C86;
  /* Sage Green */
  --dark-bg: #36454F;
  /* Charcoal */
  --light-bg: #F5F5DC;
  /* Soft Off-White */
  --text-color: #36454F;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--light-bg);
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: var(--dark-bg);
}

/* Navigation overrides */
.navbar.bg-dark {
  background-color: var(--dark-bg) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #71665C;
  /* Slightly darker taupe */
  border-color: #71665C;
}

.bg-dark {
  background-color: var(--dark-bg) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.text-white .card {
  background-color: var(--dark-bg) !important;
  color: #fff;
}

/* Hero Section Styling */
.hero-section {
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2940&auto=format&fit=crop") no-repeat center center;
  background-size: cover;
  position: relative;
  color: white;
  padding: 10rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 69, 79, 0.7);
  /* Charcoal overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-cta-btn {
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover {
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* General Section Styling */
section {
  padding: 6rem 0;
}

.section-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Features Section Icons */
.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.text-dark .feature-icon {
  color: var(--light-bg);
}

/* Waitlist Form Styling */
.waitlist-form {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 10px;
}

.slider-value {
  font-weight: bold;
  color: var(--primary-color);
}

.form-label {
  font-weight: 600;
  color: var(--dark-bg);
}

/* Additional Sections */
.problem-list li {
  list-style-type: none;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.problem-list li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Graphic Elements */
.dashboard-preview {
  padding: 4rem 0;
  background-color: #e5e5d3;
  /* A slightly darker off-white for contrast */
  border-radius: 15px;
}

.dashboard-preview h2 {
  color: var(--primary-color);
}/*# sourceMappingURL=style.css.map */