/* Urban Compost & Soil Template - Main CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Color Variables - Pastel High-Contrast Compost Theme */
:root {
  --primary-green: #77af65;
  --primary-brown: #83432f;
  --primary-cream: #f8ecd6;
  --primary-gold: #c59c62;
  --primary-sage: #839771;
  
  /* Light shades */
  --light-green: #bbe9ad;
  --light-brown: #ba8468;
  --light-cream: #faf9f5;
  --light-gold: #f8d16a;
  --light-sage: #c1cfb7;
  
  /* Dark shades */
  --dark-green: #65a256;
  --dark-brown: #82573f;
  --dark-cream: #e2e0da;
  --dark-gold: #d2bd50;
  --dark-sage: #7f8b72;
}

/* Base Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-brown);
  background-color: var(--light-cream);
}

h1 {
  font-size: 2.22rem;
  font-weight: 600;
  color: var(--primary-green);
}

h2 {
  font-size: 1.83rem;
  font-weight: 500;
  color: var(--primary-brown);
}

h3 {
  font-size: 1.51rem;
  font-weight: 500;
  color: var(--dark-green);
}

p {
  font-size: 1rem;
  color: var(--dark-brown);
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-green);
}

/* Header & Navigation */
.navbar {
  background-color: var(--primary-cream);
  border-bottom: 2px solid var(--light-sage);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-brown);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-sage) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: var(--primary-gold);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(45deg);
}

/* Sections */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: 1.04rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.60rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 17px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 16px 29px rgba(164, 98, 68, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--light-sage);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(142, 92, 67, 0.15);
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(125, 64, 44, 0.10);
  border: 2px solid var(--light-cream);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: var(--light-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-green);
}

/* Reviews Cards */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(120, 94, 64, 0.10);
  border-left: 4px solid var(--primary-gold);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 12px 30px rgba(150, 95, 78, 0.10);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(111, 172, 86, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(139, 90, 60, 0.08);
  border: 1px solid var(--light-sage);
}

.faq-question {
  color: var(--primary-brown);
  font-weight: 600;
  margin-bottom: 0.82rem;
}

.faq-answer {
  color: var(--dark-brown);
  font-size: 1.09rem;
}

/* Footer */
.footer {
  background-color: var(--dark-cream);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 1rem 0;
  background-color: var(--light-cream);
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  background-color: var(--primary-sage);
  border-radius: 5px;
}

/* Animations respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* Utility Classes */
.text-primary-green { color: var(--primary-green); }
.text-primary-brown { color: var(--primary-brown); }
.text-primary-gold { color: var(--primary-gold); }
.bg-light-cream { background-color: var(--light-cream); }
.bg-light-sage { background-color: var(--light-sage); } 

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
