:root {
    --primary-green: #2e7d32;
    --accent-orange: #f57c00;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding-top: 76px; /* Space for fixed navbar */
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.footer {
    background: #1a1a1a;
}

.btn-farm {
    background: var(--primary-green);
    border: none;
}

.btn-farm:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 16px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15) !important;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url('https://images.unsplash.com/photo-1625246333195-78d9c38ad6d9?w=2000') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

