:root {
  /* Theme Colors from ColorThemeHelper.swift */
  --c-yellow: #ffbe0b;
  --c-orange: #fb5607;
  --c-pink: #ff006e;
  --c-purple: #8338ec;
  --c-blue: #3a86ff;
  
  /* Light Theme Colors */
  --c-light-yellow: #fff4cc;
  --c-light-orange: #ffd4b3;
  --c-light-pink: #ffcce8;
  --c-light-purple: #e0ccef;
  --c-light-blue: #cce0ff;
  
  /* Text Colors & Backgrounds */
  --text-main: #343434;
  --text-secondary: #555555;
  --bg-main: #E0CFFC;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
}

.text-muted-dark {
  color: var(--text-secondary);
}

/* Sections */
.section-title {
  color: var(--c-purple);
  font-weight: 800;
  font-size: 2.5rem;
}

.section-bg-alt {
  background-color: rgba(131, 56, 236, 0.05);
}

/* Navbar */
.navbar {
  background-color: var(--bg-main) !important;
  transition: all 0.3s ease;
  padding: 1rem 0;
  border-bottom: 2px solid rgba(131, 56, 236, 0.05);
}
.navbar-brand {
  color: var(--c-purple) !important;
  font-size: 1.5rem;
}
.nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.5rem 1rem !important;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link:focus {
  color: var(--c-purple) !important;
  background-color: var(--c-light-purple);
}

/* Hero Section */
.hero {
  min-height: 80vh;
}
.hero-title {
  color: var(--c-purple);
  text-shadow: 3px 3px 0px white, -1px -1px 0px white, 1px -1px 0px white, -1px 1px 0px white, 1px 1px 0px white;
  font-size: 4rem;
  letter-spacing: -1px;
}
.hero p {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: var(--c-purple);
  border-color: var(--c-purple);
  border-radius: 50px;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--c-pink);
  border-color: var(--c-pink);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 110, 0.3) !important;
}
.btn-dark:hover, .btn-dark:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Feature Cards (How It Works) */
.feature-card {
  border-radius: 24px !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 3rem;
}
.card-yellow { background-color: var(--c-light-yellow); }
.card-yellow h3 { color: var(--c-orange); }

.card-pink { background-color: var(--c-light-pink); }
.card-pink h3 { color: var(--c-pink); }

.card-blue { background-color: var(--c-light-blue); }
.card-blue h3 { color: var(--c-blue); }

/* Contact Form */
.contact-form {
  background-color: var(--c-light-purple);
  border: 1px solid rgba(131, 56, 236, 0.15);
}
.contact-form .form-control {
  border-radius: 12px;
  border: 2px solid transparent;
  padding: 0.75rem 1rem;
}
.contact-form .form-control:focus {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 0.25rem rgba(131, 56, 236, 0.25);
}

/* Footer */
footer {
  background-color: var(--bg-main);
  color: var(--text-secondary);
}
