/* ========================================
   MAIN.CSS - Local Ingredient Gourmet Meal-Prep Kits
   Bootstrap 5 Integration - NO OVERRIDES
   ======================================== */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-sage: #89ac70;
  --primary-cream: #f2eee7;
  --primary-coral: #f1b196;
  --primary-forest: #37461f;
  --primary-charcoal: #253c49;
  
  /* Light Shades */
  --sage-light: #9fb18c;
  --cream-light: #FEFCF7;
  --coral-light: #f9d5c0;
  --forest-light: #717a3d;
  --charcoal-light: #3b5073;
  
  /* Dark Shades */
  --sage-dark: #687d47;
  --cream-dark: #e6d6c4;
  --coral-dark: #e89f70;
  --forest-dark: #3a4f19;
  --charcoal-dark: #273d48;
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Base Typography - Conservative Sizing */
body {
  font-family: var(--font-primary);
  color: var(--primary-charcoal);
  background-color: var(--cream-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-forest);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

/* Navigation */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-forest);
}

.navbar-nav .nav-link {
  color: var(--primary-charcoal);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  z-index: 2;
    padding-top: 100px;
}

.hero-image {
  position: relative;
}

.hero-decorative {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.section-description {
  color: var(--charcoal-light);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(47, 73, 90, 0.10);
  transition: var(--transition-smooth);
  border: 1px solid var(--cream-dark);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(32, 43, 59, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-coral);
}

.service-features {
  color: var(--charcoal-light);
  font-size: 0.9rem;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--cream-light);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Team Cards - Only color styles, no layout */
.team-card {
  background: white;
}

.team-photo {
  width: 100%;
}

.team-name {
  color: var(--primary-forest);
}

.team-role {
  color: var(--primary-sage);
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(25, 45, 56, 0.10);
  border-left: 4px solid var(--primary-coral);
}

.review-text {
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-forest);
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(42, 67, 87, 0.10);
  text-align: center;
  transition: var(--transition-smooth);
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.05);
  border-left: 3px solid var(--primary-sage);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(39, 55, 76, 0.10);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(157, 186, 134, 0.25);
}

.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

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

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--sage-light);
  aspect-ratio: 4/3;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(33, 47, 67, 0.10);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background-color: var(--primary-charcoal);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--cream-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--sage-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--cream-light);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--cream-light);
}

.breadcrumb-image {
  height: 30px;
  width: auto;
}

/* Utilities */
.text-sage { color: var(--primary-sage); }
.text-coral { color: var(--primary-coral); }
.text-forest { color: var(--primary-forest); }
.bg-sage { background-color: var(--primary-sage); }
.bg-cream { background-color: var(--primary-cream); }
.bg-coral { background-color: var(--primary-coral); }

/* Space for index_space.html */
#space {
  min-height: 60vh;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
} 


/* Team Social Links - Only basic colors */
.social-link {
  color: white;
  text-decoration: none;
}

.facebook-link {
  background: #1877f2;
}

.linkedin-link {
  background: #0a66c2;
}

.instagram-link {
  background: #e4405f;
}

.x-link {
  background: #000000;
}
