/* Plant Nursery Template - Main CSS */
:root {
  --primary-green: #2d5016;
  --secondary-green: #4a7c59;
  --accent-brown: #8b4513;
  --warm-cream: #f5f2e8;
  --earth-orange: #d2691e;
  
  /* Light/Dark variations */
  --light-green: #9ccc65;
  --dark-green: #1b2f09;
  --light-brown: #deb887;
  --dark-brown: #654321;
  --soft-cream: #faf8f3;
  
  /* Fonts */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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-brown);
  background-color: var(--soft-cream);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--warm-cream) !important;
}

.navbar-nav .nav-link {
  color: var(--warm-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-green) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 50%, var(--accent-brown) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../SEN_images/hero-bg.webp') center center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.section-subtitle {
  text-align: center;
  font-size: var(--font-size-large);
  color: var(--secondary-green);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-brown);
  margin: 1rem 0;
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--light-green);
}

/* Features */
.feature-card {
  background: var(--warm-cream);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  border-left: 5px solid var(--secondary-green);
}

/* Reviews */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--warm-cream);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-green);
  box-shadow: 0 0 0 0.2rem rgba(77, 124, 89, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 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;
  font-weight: 600;
  color: var(--primary-green);
  cursor: pointer;
  border-bottom: 1px solid var(--warm-cream);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
  color: var(--warm-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-green);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--warm-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-green);
}

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--secondary-green);
  border-radius: 50%;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-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;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--warm-cream);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

/* Space page */
#space {
  min-height: 50vh;
  background: var(--soft-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Additional pages sections */
.add-page-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--warm-cream);
}

.add-page-section:last-child {
  border-bottom: none;
}

/* Utilities */
.text-primary { color: var(--primary-green) !important; }
.text-secondary { color: var(--secondary-green) !important; }
.bg-primary { background-color: var(--primary-green) !important; }
.bg-secondary { background-color: var(--secondary-green) !important; }
.bg-light { background-color: var(--warm-cream) !important; }

/* Swiper customization */
.swiper-button-next,
.swiper-button-prev {
  color: var(--secondary-green);
}

.swiper-pagination-bullet-active {
  background: var(--secondary-green);
} 