/* PrairieMate - Global Styles */

:root {
    --prairie-green: #05b050;
    --prairie-light-green: #7bc8a2;
    --prairie-dark-green: #146c43;
    --prairie-earth: #8b5a3c;
    --prairie-cream: #f8f9fa;
    --prairie-gold: #ffc107;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
}

/* Typography */

body {
    font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    line-height: 1.6;
}

.text-prairie {
    color: var(--prairie-green) !important;
}

.bg-prairie {
    background-color: var(--prairie-green) !important;
}

.bg-prairie-cream {
    background-color: var(--prairie-cream) !important;
}

/* Header Styles */
.hero-section {
    background: linear-gradient(135deg, var(--prairie-green) 0%, var(--prairie-light-green) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Navigation */
.navbar-brand {
    font-size: 1.8rem !important;
    color: var(--prairie-green) !important;
}

.nav-link {
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--prairie-green) !important;
}

.nav-link.active {
    color: var(--prairie-green) !important;
    font-weight: 600;
}

/* Buttons */
.btn-prairie {
    background-color: var(--prairie-green);
    border-color: var(--prairie-green);
    color: white;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-prairie:hover {
    background-color: var(--prairie-dark-green);
    border-color: var(--prairie-dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.btn-outline-prairie {
    border-color: var(--prairie-green);
    color: var(--prairie-green);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-prairie:hover {
    background-color: var(--prairie-green);
    border-color: var(--prairie-green);
    color: white;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-header {
    background-color: var(--prairie-cream);
    border-bottom: 2px solid var(--prairie-green);
    font-weight: 600;
}

/* Feature Sections */
.feature-section {
    padding: 80px 0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--prairie-green), var(--prairie-light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-title {
    color: var(--prairie-green);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background: var(--prairie-cream);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Product Specifications */
.spec-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.spec-table th {
    background-color: var(--prairie-green);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.spec-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* Certification Badges */
.certification-badge {
    background: white;
    border: 2px solid var(--prairie-green);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    /* background-color: rgb(189, 255, 189); */
    color: white;
}

.certification-badge img {
    max-height: 80px;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--prairie-green);
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

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

.timeline-item {
    position: relative;
    margin: 40px 0;
}

.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    width: 45%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: auto;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--prairie-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .timeline-marker {
        left: 20px;
    }
}

/* FAQ Accordion */
.accordion-button {
    background-color: var(--prairie-cream);
    color: var(--text-primary);
    font-weight: 600;
    border: none;
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--prairie-green);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--prairie-green), var(--prairie-light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-prairie {
    border-color: var(--prairie-green) !important;
}

.shadow-prairie {
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2) !important;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn {
        display: none !important;
    }
}
