/*
Theme Name: Zuumart Tools
Theme URI: https://zuumart.com
Author: Zuumart Team
Author URI: https://zuumart.com
Description: A Bootstrap 5 based custom theme for Zuumart Tools.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zuumart
*/

:root {
    /* Brand Colors for Custom Use */
    --color-primary: #10B981;
    /* Emerald 500 */
    --color-primary-dark: #059669;
    /* Emerald 600 */
    --color-secondary: #3B82F6;
    /* Blue 500 */
}

/* Bootstrap Overrides & Brand Styling */

/* Typography */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #F9FAFB;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #111827;
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

a:hover {
    color: var(--color-primary-dark);
}

/* Footer Links */
.hover-white:hover {
    color: #fff !important;
}

/* Header & Navbar */
.site-header {
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #4B5563 !important;
    /* Gray 600 */
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active,
.show>.nav-link {
    color: var(--color-primary) !important;
}

/* Dropdown Polish */
.dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 0.25rem;
    color: #4B5563;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: #ECFDF5;
    /* Green 50 */
    color: var(--color-primary-dark);
}

.card {
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    /* Rounded lg */
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* Shadow lg */
    border-color: var(--color-primary);
}

.card-title {
    color: #1F2937;
    font-weight: 700;
}

.card-text {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.hero-wrapper .btn-outline-light:hover {
    color: var(--color-primary-dark);
}

/* Buttons */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* Form Styles fallback */
.form-group {
    margin-bottom: 1rem;
}