/* Bootstrap 5 CDN Integration & Custom Variables */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');
@import url('https://unpkg.com/sal.js@0.8.5/dist/sal.css');

/* CSS Variables - Nature-Inspired Palette for Heirloom Seeds */
:root {
  /* Primary Colors */
  --sage-green: #9CAF88;
  --terracotta: #D2691E;
  --cream-white: #FDF5E6;
  --earth-brown: #8B7355;
  --lavender: #E6E6FA;
  
  /* Light Variations */
  --sage-green-light: #B8C4A8;
  --terracotta-light: #E6A168;
  --earth-brown-light: #A68B75;
  --lavender-light: #F0F0FF;
  
  /* Dark Variations */
  --sage-green-dark: #7A9168;
  --terracotta-dark: #B8550E;
  --earth-brown-dark: #6B5535;
  --lavender-dark: #C6C6DA;
  
  /* Typography */
  --heading-font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --body-font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --hero-height: 100vh;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  color: var(--earth-brown);
  background-color: var(--cream-white);
  line-height: 1.6;
  font-size: 16px;
    overflow-x: hidden;
}

/* Typography - Conservative Font Sizes */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sage-green-dark);
  font-family: var(--heading-font);
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage-green-dark);
  font-family: var(--heading-font);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--earth-brown);
  font-family: var(--heading-font);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--earth-brown);
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--earth-brown);
}

p {
  font-size: 1rem;
  color: var(--earth-brown);
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background-color: rgba(253, 245, 230, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lavender);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-green-dark);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--earth-brown);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: var(--sage-green);
  opacity: 0.1;
  border-radius: 50%;
  transform: scale(1.5);
}

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

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

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

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--earth-brown);
}

/* Button Styles */
.btn-primary {
  background-color: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--sage-green-dark);
  border-color: var(--sage-green-dark);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

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

/* Card Styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

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

.card-header {
  background-color: var(--lavender-light);
  border-bottom: 1px solid var(--lavender);
  border-radius: 15px 15px 0 0;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

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

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

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
}

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

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
  position: relative;
}

.review-item::before {
  content: '"';
  font-size: 4rem;
  color: var(--lavender);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(139, 115, 85, 0.08);
}

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

.faq-answer {
  color: var(--earth-brown);
  margin: 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

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

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

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.1);
}

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

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

/* Footer */
.footer {
  background-color: var(--earth-brown-dark);
  color: var(--cream-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

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

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

/* Breadcrumb */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

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

/* Utilities */
.text-sage { color: var(--sage-green); }
.text-terracotta { color: var(--terracotta); }
.text-earth { color: var(--earth-brown); }
.bg-sage { background-color: var(--sage-green); }
.bg-terracotta { background-color: var(--terracotta); }
.bg-cream { background-color: var(--cream-white); }
.bg-lavender { background-color: var(--lavender); }


.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

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

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
