/* Heirloom Seeds Shop - Main CSS */
:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-green: #7fb069;
  --primary-brown: #8b5a3c;
  --primary-cream: #f4f1e8;
  --primary-sage: #a8c09a;
  --primary-earth: #6b4423;
  
  /* Light/Dark Shades */
  --light-green: #b8d4a8;
  --dark-green: #5a8049;
  --light-brown: #b8936f;
  --dark-brown: #5c3a28;
  --light-cream: #faf9f6;
  --dark-cream: #e6e0d4;
  --light-sage: #c4d4b8;
  --dark-sage: #7a9672;
  --light-earth: #9d6b3e;
  --dark-earth: #4a2f16;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.4rem;
  --font-size-navbar: 1rem;
  
  /* Spacing */
  --section-padding: 80px 0;
  --card-padding: 2rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-earth);
  background-color: var(--light-cream);
  font-size: var(--font-size-base);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--primary-earth);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header */
#header {
  background-color: var(--primary-cream);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: var(--font-size-navbar);
  font-weight: 700;
  color: var(--primary-earth);
}

.navbar-nav .nav-link {
  font-size: var(--font-size-base);
  color: var(--primary-brown);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

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

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative:first-child {
  top: 10%;
  right: 10%;
}

.hero-decorative:last-child {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

#about {
  background-color: var(--light-cream);
}

#services {
  background-color: var(--primary-cream);
}

#features {
  background-color: var(--light-sage);
}

#priceplan {
  background-color: var(--light-cream);
}

#team {
  background-color: var(--primary-cream);
}

#reviews {
  background-color: var(--light-cream);
}

#casestudy {
  background-color: var(--light-sage);
}

#process {
  background-color: var(--light-cream);
}

#timeline {
  background-color: var(--primary-cream);
}

#career {
  background-color: var(--light-cream);
}

#coreinfo {
  background-color: var(--light-sage);
}

#contact {
  background-color: var(--light-cream);
}

#blog {
  background-color: var(--primary-cream);
}

#faq {
  background-color: var(--light-cream);
}

#gallery {
  background-color: var(--primary-cream);
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

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

.card-body {
  padding: var(--card-padding);
}

/* Service Cards */
.service-card {
  text-align: center;
  height: 100%;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  text-align: center;
}

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

/* Price Plan Cards */
.price-card {
  text-align: center;
  position: relative;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-sage);
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

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

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

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

#footer a {
  color: var(--light-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-sage);
}

#footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--primary-brown);
}

/* Blog Cards */
.blog-card {
  height: 100%;
}

.blog-excerpt {
  color: var(--primary-brown);
  font-size: var(--font-size-small);
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background-color: var(--primary-green);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: var(--light-sage);
}

.timeline-item:last-child::after {
  display: none;
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Utilities */
.text-primary-green {
  color: var(--primary-green);
}

.text-primary-brown {
  color: var(--primary-brown);
}

.bg-primary-sage {
  background-color: var(--primary-sage);
}

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

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

.section-description {
  color: var(--primary-brown);
  font-size: var(--font-size-base);
  max-width: 600px;
  margin: 0 auto;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

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

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

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

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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