/* Garden Design Consulting - Main CSS */
:root {
  /* Primary Color Palette */
  --primary-green: #2d5a27;
  --primary-sage: #87a96b;
  --primary-earth: #8b4513;
  --primary-cream: #f5f5dc;
  --primary-stone: #696969;
  
  /* Light/Dark Shades */
  --light-green: #4a7c59;
  --dark-green: #1a3d1a;
  --light-sage: #a4c187;
  --dark-sage: #6b8751;
  --light-earth: #cd853f;
  --dark-earth: #654321;
  --light-cream: #fdfcf0;
  --dark-cream: #e6e6cd;
  --light-stone: #a9a9a9;
  --dark-stone: #2f4f4f;
  
  /* Typography */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 15px;
}

/* Base Typography - Conservative Sizes */
body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-stone);
  background-color: var(--light-cream);
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark-green);
  margin-bottom: 0.6rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.3rem !important;
  font-weight: 600;
  color: var(--primary-green) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  border-bottom: 2px solid var(--primary-sage);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-green) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--primary-sage) 100%);
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../FLA_images/hero-garden.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

/* Decorative Shapes */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-sage), var(--light-sage));
  opacity: 0.1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--light-cream);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(45, 90, 39, 0.15);
}

.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(--primary-earth);
  margin-top: 1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-sage);
}

/* Testimonials Slider */
.testimonial-slide {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 20px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark-stone);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--primary-green);
  border-bottom: 1px solid var(--light-cream);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--dark-stone);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-sage));
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-green), var(--dark-sage));
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 2rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --font-size-base: 14px;
    --section-padding: 60px 0;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .services-grid,
  .features-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .decorative-blob {
    display: none;
  }
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--primary-sage);
  border-radius: 50%;
}

/* Process Number Styling */
.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-sage));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

/* Contact Info Styling */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: fit-content;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info i {
  margin-right: 1rem;
  color: var(--primary-sage);
  width: 20px;
}

/* Service Features Lists */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-cream);
  position: relative;
  padding-left: 1.5rem;
}

.service-card ul li:before {
  content: '✓';
  color: var(--primary-sage);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-card ul li:last-child {
  border-bottom: none;
}

/* Additional Responsive Styles */
@media (max-width: 767px) {
  .timeline-item:before {
    display: none;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .contact-info {
    margin-top: 2rem;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .decorative-blob {
    animation: none;
  }
} 