/*
Theme Name: AgriExport Theme
Theme URI: https://agriexport.co
Author: AgriExport Co.
Author URI: https://agriexport.co
Description: A modern agricultural export company theme with Tailwind CSS styling
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agriexport
Tags: agricultural, export, business, modern, tailwind
*/

/* Base Styles */
:root {
    --color-primary: #5bec13;
    --color-background-light: #f6f8f6;
    --color-background-dark: #162210;
    --color-deep-green: #1A3C15;
    --color-earth-brown: #5D4037;
}

body {
    font-family: 'Public Sans', sans-serif;
    background-color: var(--color-background-light);
    color: #131811;
    transition: background-color 0.3s, color 0.3s;
}

.dark body {
    background-color: var(--color-background-dark);
    color: white;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
}

.form-input-custom {
    display: block;
    width: 100%;
    border-radius: 0.5rem;
    border-color: #dfe6db;
    background-color: white;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
}

.form-input-custom:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(91, 236, 19, 0.2);
}

.dark .form-input-custom {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* WordPress Admin Bar Fix */
.admin-bar .sticky-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .sticky-nav {
        top: 46px;
    }
}
