/*
Theme Name: GNI Theme
Description: Child theme of Hello Elementor for GNI customizations
Author: GNI Development Team
Version: 1.0.0
Template: hello-elementor
Text Domain: gni-theme
*/

/* 
 * GNI Child Theme
 * 
 * This child theme extends Hello Elementor with GNI-specific customizations:
 * - Custom mega-menu navigation system
 * - Blue theme colors (#005EB8, #467FF7)
 * - Custom header templates
 * - Responsive design enhancements
 * 
 * Parent Theme: Hello Elementor
 * Child Theme: GNI Theme v1.0.0
 */

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

/* GNI Custom Styles */
/* All custom styles are in separate files for better organization */

/* Theme Colors */
:root {
    --gni-site-blue: #005EB8;
    --gni-accent-blue: #467FF7;
    --gni-primary-blue: #1C244B;
    --gni-text-gray: #324A6D;
    --gni-white: #FFFFFF;
}

/* Base GNI Styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* GNI Navigation Base */
.gni-nav-link {
    color: var(--gni-site-blue) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gni-nav-link:hover {
    color: var(--gni-accent-blue) !important;
    background: rgba(70, 127, 247, 0.1) !important;
}

/* GNI Button Styles */
.gni-btn {
    background: var(--gni-accent-blue) !important;
    color: var(--gni-white) !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.gni-btn:hover {
    background: var(--gni-primary-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(70, 127, 247, 0.3) !important;
}

.gni-btn-secondary {
    background: transparent !important;
    color: var(--gni-accent-blue) !important;
    border: 2px solid var(--gni-accent-blue) !important;
}

.gni-btn-secondary:hover {
    background: var(--gni-accent-blue) !important;
    color: var(--gni-white) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gni-mega-dropdown {
        max-width: 90vw !important;
    }
}

@media (max-width: 768px) {
    .gni-mega-dropdown {
        max-width: 95vw !important;
        left: 2.5vw !important;
    }
}

@media (max-width: 480px) {
    .gni-mega-dropdown {
        max-width: 100vw !important;
        left: 0 !important;
        border-radius: 0 !important;
    }
}
