/* assets/css/nature-theme.css */
:root {
    /* Nature Palette */
    --primary: #84CC16; /* Lime Green */
    --primary-dark: #4D7C0F; /* Olive */
    --primary-light: rgba(132, 204, 22, 0.1);
    --bg: #F8FAFC; /* Warm White/Cream */
    --card: #FFFFFF;
    --card2: #F1F5F9;
    --sidebar: #FFFFFF;
    --border: #E2E8F0;
    --text: #334155;
    --muted: #64748B;
    
    /* Semantic Colors */
    --green: #10B981;
    --blue: #3B82F6;
    --red: #EF4444;
    --orange: #F59E0B;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    --shadow-primary: 0 10px 20px rgba(132, 204, 22, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}

/* Common Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    gap: 8px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn:active {
    transform: translateY(0);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-green { background: #ECFDF5; color: var(--green); }
.badge-red { background: #FEF2F2; color: var(--red); }
.badge-blue { background: #EFF6FF; color: var(--blue); }
.badge-muted { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }

/* Form Elements */
input, select, textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--card2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    resize: none;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--card);
    box-shadow: 0 0 0 4px var(--primary-light);
}

label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
