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

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-sage: #6c935b;
  --primary-cream: #ede0cc;
  --primary-coral: #e0b483;
  --primary-forest: #58632b;
  --primary-charcoal: #32414e;
  
  /* Light Shades */
  --sage-light: #a4c07a;
  --cream-light: #FEFCF7;
  --coral-light: #ffd2b4;
  --forest-light: #617632;
  --charcoal-light: #405876;
  
  /* Dark Shades */
  --sage-dark: #5d7546;
  --cream-dark: #ede7d4;
  --coral-dark: #eda98d;
  --forest-dark: #3f4c1c;
  --charcoal-dark: #202c31;
  
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

/* 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;
}

.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: 275px;
}

.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(31, 47, 65, 0.10);
  border: 1px solid var(--cream-dark);
}

/* 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 */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(50, 68, 83, 0.10);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--sage-light);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

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

.team-role {
  color: var(--primary-sage);
  font-size: 0.9rem;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(48, 65, 97, 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(41, 52, 74, 0.10);
  text-align: center;
}

.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(50, 65, 84, 0.10);
}

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

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

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

.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(36, 52, 60, 0.10);
}

.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;
}

.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 - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    color: white;
}

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

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

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

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

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
