/* Main Stylesheet for Heirloom Seeds Subscription Service */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --seed-green: #88b97d;
  --earth-brown: #925f40;
  --harvest-gold: #f2c364;
  --soil-purple: #9783ff;
  --leaf-blue: #85b5d7;
  
  /* Light Shades */
  --seed-green-light: #90bb81;
  --earth-brown-light: #d9aa84;
  --harvest-gold-light: #dcc87e;
  --soil-purple-light: #d0c2ff;
  --leaf-blue-light: #a4c7dd;
  
  /* Dark Shades */
  --seed-green-dark: #5b8549;
  --earth-brown-dark: #654729;
  --harvest-gold-dark: #edbe53;
  --soil-purple-dark: #8f7af5;
  --leaf-blue-dark: #70bdd6;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #232931;
  --black: #000000;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  font-size: 16px;
}

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--seed-green-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--earth-brown-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--harvest-gold-dark);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--seed-green-dark);
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--seed-green);
}

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

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

.hero-image {
  position: relative;
}

/* Decorative Shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--harvest-gold);
  top: 10%;
  left: -100px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--soil-purple);
  bottom: 20%;
  right: -75px;
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--earth-brown);
  margin-bottom: 1.5rem;
}

.section-description {
  color: var(--dark-gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  background-color: var(--light-gray);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--harvest-gold-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

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

/* Services Section */
.services-section {
  background-color: var(--white);
}

.service-card {
  background: var(--white);
  border: 2px solid var(--leaf-blue-light);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--seed-green);
  box-shadow: 0 10px 30px rgba(125, 182, 109, 0.20);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--earth-brown-dark);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(45deg, var(--harvest-gold-light), var(--soil-purple-light));
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--harvest-gold-light);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--seed-green-dark);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--white);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--leaf-blue-light);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--harvest-gold-light);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--leaf-blue-light);
}

.review-card {
  background: var(--white);
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--light-gray);
}

/* Process Section */
.process-section {
  background-color: var(--white);
}

.process-step {
  background: var(--harvest-gold-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.step-number {
  background: var(--seed-green-dark);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: absolute;
  top: -20px;
  left: 20px;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--soil-purple-light);
}

.timeline-item {
  background: var(--white);
  border-left: 4px solid var(--seed-green);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0 10px 10px 0;
}

/* Career Section */
.career-section {
  background-color: var(--white);
}

.career-card {
  background: var(--light-gray);
  border: 1px solid var(--harvest-gold-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.career-card:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--harvest-gold-light);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
}

.form-control {
  border: 2px solid var(--leaf-blue-light);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--seed-green);
  box-shadow: 0 0 0 0.2rem rgba(128, 168, 103, 0.25);
}

.btn-primary {
  background-color: var(--seed-green);
  border-color: var(--seed-green);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--seed-green-dark);
  border-color: var(--seed-green-dark);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--harvest-gold-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
  background-color: var(--leaf-blue-light);
}

.faq-card {
  background: var(--white);
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--seed-green-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
  padding: 80px 0;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 50px 0 20px;
}

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

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--harvest-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 20px 0;
  background-color: var(--light-gray);
}

.breadcrumb-image {
  max-height: 30px;
}

/* Utility Classes */
.text-seed-green { color: var(--seed-green); }
.text-earth-brown { color: var(--earth-brown); }
.text-harvest-gold { color: var(--harvest-gold); }
.text-soil-purple { color: var(--soil-purple); }
.text-leaf-blue { color: var(--leaf-blue); }

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


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

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

.x-link i {
    display: none;
}

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