/**
 * OSA Brand Bible - Unified Theme Styling
 * Colors: Navy (#0A1628), Blue (#1565C0), Orange (#E65100)
 * Fonts: Space Grotesk (headlines) + Inter (body)
 * Version: 1.0.0
 */

/* Root Variables */
:root {
    --osa-navy: #0A1628;
    --osa-blue: #1565C0;
    --osa-orange: #E65100;
    --osa-white: #FFFFFF;
    --osa-light-gray: #F5F5F5;
    --osa-dark-gray: #333333;
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--osa-dark-gray);
}

h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title,
.widget-title,
.ast-archive-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600;
}

/* Header Styling */
.site-header,
.main-header-bar,
.ast-primary-header-bar,
.ast-main-header-bar-alignment {
    background-color: var(--osa-navy) !important;
    border-bottom: none !important;
}

.site-header .site-title a,
.site-header .site-description,
.main-header-bar .main-header-menu .menu-item > a,
.ast-header-break-point .ast-mobile-menu-buttons .menu-toggle,
.ast-builder-menu .main-header-menu .menu-item > .menu-link {
    color: var(--osa-white) !important;
}

.main-header-bar .main-header-menu .menu-item > a:hover,
.ast-builder-menu .main-header-menu .menu-item > .menu-link:hover {
    color: var(--osa-orange) !important;
}

/* Active menu items */
.ast-primary-menu .current-menu-item > a,
.ast-primary-menu .current-menu-ancestor > a,
.main-header-menu .current-menu-item > .menu-link,
.main-header-menu .current-menu-ancestor > .menu-link {
    color: var(--osa-orange) !important;
}

/* Links - OSA Blue */
a {
    color: var(--osa-blue);
}

a:hover {
    color: var(--osa-orange);
}

/* Buttons */
.ast-button,
.button,
.ast-custom-button,
input[type="submit"],
button[type="submit"],
.wp-block-button__link,
.elementor-button {
    background-color: var(--osa-blue) !important;
    border-color: var(--osa-blue) !important;
    color: var(--osa-white) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ast-button:hover,
.button:hover,
.ast-custom-button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
.wp-block-button__link:hover,
.elementor-button:hover {
    background-color: var(--osa-orange) !important;
    border-color: var(--osa-orange) !important;
    color: var(--osa-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.3);
}

/* Footer Styling */
.site-footer,
.ast-footer-overlay,
.ast-small-footer,
.footer-adv,
.site-below-footer-wrap,
.site-above-footer-wrap {
    background-color: var(--osa-navy) !important;
    color: var(--osa-white) !important;
}

.site-footer a,
.ast-small-footer a,
.footer-adv a {
    color: var(--osa-white) !important;
}

.site-footer a:hover,
.ast-small-footer a:hover,
.footer-adv a:hover {
    color: var(--osa-orange) !important;
}

.site-footer .widget-title,
.footer-adv .widget-title {
    color: var(--osa-white) !important;
    border-bottom: 2px solid var(--osa-blue);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Info Bar at top */
.osa-info-bar {
    background-color: var(--osa-navy);
    color: var(--osa-white);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 999;
}

.osa-info-bar a {
    color: var(--osa-orange) !important;
    text-decoration: none;
}

.osa-info-bar a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--osa-navy) 0%, var(--osa-blue) 100%);
    color: var(--osa-white);
    padding: 80px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--osa-white);
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--osa-white);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.trust-badge {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

/* Awards Bar */
.awards-bar {
    background-color: var(--osa-light-gray);
    padding: 40px 0;
    text-align: center;
}

.awards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Layout */
.ast-container {
    max-width: 1200px;
}

/* Navigation Menu Styling */
.main-header-menu {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.main-header-menu .menu-item {
    margin: 0 15px;
}

/* Phone Number in Header */
.header-phone {
    color: var(--osa-orange);
    font-weight: 600;
    font-size: 18px;
    margin-left: 20px;
}

.header-phone:hover {
    color: var(--osa-white);
}

/* Widget title styling */
.widget-title::before {
    color: var(--osa-orange) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .trust-badges,
    .awards-container {
        gap: 20px;
    }

    .osa-info-bar {
        font-size: 11px;
        padding: 6px 0;
    }
}
