:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-green: #4a7c59;
    --primary-brown: #8b4513;
    --primary-cream: #f5f5dc;
    --primary-sage: #87a96b;
    --primary-terracotta: #cd853f;
    
    /* Light Shades */
    --light-green: #e8f5e8;
    --light-brown: #f4e4bc;
    --light-cream: #fefefe;
    --light-sage: #f0f4ed;
    --light-terracotta: #faf0e6;
    
    /* Dark Shades */
    --dark-green: #2d5016;
    --dark-brown: #5d2f0a;
    --dark-cream: #e6e6cd;
    --dark-sage: #5a6b47;
    --dark-terracotta: #a0522d;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
}

h2 {
    font-size: 2rem;
    color: var(--primary-brown);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-sage);
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.1rem;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary-brown);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-sage);
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--light-cream);
    padding: 1rem 0;
    margin-top: 76px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-sage) 100%);
    padding-top: 76px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 125px;
}

.hero-section h2 {
    font-size: 1.5rem;
    color: var(--primary-sage);
    margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Service Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Price Styling */
.price {
    background: var(--light-green);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

/* Step Numbers */
.step-number {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Timeline */
.timeline-item {
    position: relative;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.year-badge {
    font-weight: 600;
    display: inline-block;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

/* Technique Cards */
.technique-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Harvest Cards */
.harvest-card {
    background: var(--light-cream);
    border-radius: 10px;
    border: 1px solid var(--primary-cream);
}

/* Saving Cards */
.saving-card {
    background: var(--light-sage);
    border-radius: 10px;
    text-align: center;
}

/* Flower Cards */
.flower-card {
    background: var(--light-cream);
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--primary-cream);
}

/* Herb Cards */
.herb-card {
    background: var(--light-green);
    border-radius: 10px;
}

/* Grain Cards */
.grain-card {
    background: var(--light-brown);
    border-radius: 10px;
    text-align: center;
}

/* Conservation Cards */
.conservation-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--primary-cream);
    border-radius: 8px;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    border-radius: 25px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Footer */
footer {
    background-color: var(--dark-brown);
}

footer h5 {
    color: var(--primary-cream);
    margin-bottom: 1rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-sage);
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* FAQ Cards */
#faq .card {
    border-left: 4px solid var(--primary-sage);
}

/* Reviews */
#reviews .card {
    border-top: 3px solid var(--primary-terracotta);
}

/* Utility Classes */
.text-orange {
    color: var(--primary-terracotta);
}

.text-brown {
    color: var(--primary-brown);
}

.text-purple {
    color: #6f42c1;
}

/* Section Spacing */
section {
    position: relative;
}

.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Background Variations */
.bg-light {
    background-color: var(--light-cream);
}

/* Card Hover Effects */
.card-hover:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Colors */
.fa-seedling { color: var(--primary-green); }
.fa-leaf { color: var(--primary-sage); }
.fa-globe { color: var(--primary-terracotta); }
.fa-heart { color: #dc3545; }
.fa-certificate { color: var(--primary-terracotta); }
.fa-shipping-fast { color: var(--primary-green); }
.fa-users { color: var(--primary-sage); }
.fa-shield-alt { color: var(--primary-brown); }

/* Team Member Cards */
#team .card img {
    border: 4px solid var(--primary-cream);
}

/* Process Steps */
.step-number {
    background-color: var(--primary-green);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 125px;
}
    
    .hero-section h2 {
        font-size: 1.25rem;
    }
    
    .card-img-top {
        height: 150px;
    }
    
    .py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
a:focus,
button:focus,
.form-control:focus {
    outline: 2px solid var(--primary-sage);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
} 


/* 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;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.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;
    }
}
