/* Root Variables - 5 Color Palette */
:root {
    /* Primary Colors */
    --primary-green: #87a59d;
    --secondary-mint: #8BC34A;
    --accent-coral: #FF7F7F;
    --neutral-cream: #F8F4E6;
    --dark-forest: #1B3A2F;
    
    /* Light/Dark Shades */
    --light-green: #E8F5E8;
    --light-mint: #F0F8E8;
    --light-coral: #FFE5E5;
    --light-cream: #FEFCF5;
    --light-forest: #E0E8E5;
    
    --dark-green: #1A3D32;
    --dark-mint: #6B9B3C;
    --dark-coral: #E65555;
    --dark-cream: #E8E2D0;
    --dark-forest: #0F2219;
    
    /* Fonts */
    --font-primary: 'Arial', sans-serif;
    --font-secondary: 'Helvetica', sans-serif;
    
    /* Conservative Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--dark-forest);
    background-color: var(--neutral-cream);
}


.navbar-brand {
    color: aliceblue;
}


/* Bootstrap Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-mint), var(--primary-green));
    border-color: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-mint));
    border-color: var(--dark-mint);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Bootstrap Forms */
.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 2px solid var(--light-green);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-mint);
    box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.25);
    outline: 0;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-forest);
}

.form-check {
    display: block;
    position: relative;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-label {
    margin-bottom: 0;
    color: var(--dark-forest);
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Bootstrap Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: var(--spacing-xl);
}

.mb-5 {
    margin-bottom: var(--spacing-2xl);
}

.mt-5 {
    margin-top: var(--spacing-2xl);
}

.py-5 {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.min-vh-100 {
    min-height: 100vh;
}

/* FontAwesome Icons */
.fas {
    font-family: 'Font Awesome', sans-serif;
    font-weight: 900;
}

.fas.fa-leaf:before { content: "🌱"; }
.fas.fa-truck:before { content: "🚚"; }
.fas.fa-clock:before { content: "⏰"; }
.fas.fa-recycle:before { content: "♻️"; }
.fas.fa-seedling:before { content: "🌱"; }
.fas.fa-map-marker-alt:before { content: "📍"; }
.fas.fa-shield-alt:before { content: "🛡️"; }
.fas.fa-heart:before { content: "❤️"; }
.fas.fa-phone:before { content: "📞"; }
.fas.fa-envelope:before { content: "✉️"; }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        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;
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: var(--fs-3xl);
}

h2 {
    font-size: var(--fs-2xl);
}

h3 {
    font-size: var(--fs-xl);
}

h4 {
    font-size: var(--fs-lg);
}

h5, h6 {
    font-size: var(--fs-base);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--dark-green);
}

a {
    color: var(--secondary-mint);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-mint);
}



/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-cream), var(--light-green));
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../VIX_images/hero-grocery.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Section Styles */
section {
    padding: var(--spacing-3xl) 0;
}

.bg-light {
    background: linear-gradient(135deg, var(--light-cream), var(--light-coral)) !important;
}

/* Card Styles */
.feature-card, .service-card, .price-card, .review-card, .faq-card, .blog-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .review-card:hover, .faq-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: var(--fs-2xl);
    color: var(--secondary-mint);
    margin-bottom: var(--spacing-md);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
}

/* Service Cards */
.service-card {
    text-align: center;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.price {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--accent-coral);
    margin-top: var(--spacing-md);
}

/* Price Cards */
.price-card {
    text-align: center;
    position: relative;
}

.price-card.featured {
    background: linear-gradient(135deg, var(--light-mint), var(--light-green));
    transform: scale(1.05);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.price-card li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--light-cream);
}

/* Team Section */
.team-member {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--spacing-md);
    border: 3px solid var(--secondary-mint);
}

/* Process Section */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-mint), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--fs-xl);
    margin: 0 auto var(--spacing-md);
}

/* Timeline */
.timeline {
    position: relative;
    padding: var(--spacing-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-mint);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-coral);
    border-radius: 50%;
    top: var(--spacing-lg);
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

/* Gallery */
.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
}

.contact-info {
    padding: var(--spacing-xl);
}

.contact-info h4 {
    color: var(--primary-green);
    margin-bottom: var(--spacing-lg);
}

.contact-info p {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-forest), var(--dark-green));
    color: var(--light-cream);
}

.footer h4, .footer h5 {
    color: var(--light-mint);
}

.footer a {
    color: var(--light-cream);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-mint);
}



/* Space Page */
.space-container {
    background: linear-gradient(135deg, var(--light-cream), var(--light-mint));
    padding: var(--spacing-3xl) 0;
    margin-top: 76px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* High Contrast for Accessibility */
.high-contrast {
    background: white;
    color: var(--dark-forest);
    border: 2px solid var(--primary-green);
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--secondary-mint);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar, .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

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

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
