/* css/global.css */

/* FIX: The @import rule for Google Fonts has been REMOVED from this file. */
/* It is now loaded directly in the HTML for much better performance. */

:root {
    /* Primary Color Palette */
    --color-primary: #1a237e;      /* Deep, trustworthy navy */
    --color-secondary: #021bba;     /* Vibrant, action-oriented blue */
    --color-accent: #f2f4f7;       /* Light grey for backgrounds */
    
    /* Supporting Colors */
    --color-background: #ffffff;
    --color-text: #595959;
    --color-text-light: #667085;
    --color-hero-text: #595959;
    --color-hero-text1: #ffffff00;
    --color-success: #198754;
    --color-error: #dc3545;
    --color-border: #e0e0e0;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Design Tokens */
    --border-radius: 12px;
    --shadow-light: 0 8px 16px rgba(0,0,0,0.05);
    --shadow-dark: 0 15px 30px rgba(0,0,0,0.1);
    --transition-fast: 0.3s ease;
} 

.global-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

.global-header .global-nav a {
    /* Always use the light text color for the hero */
    color: var(--color-hero-text);
    font-weight: 600;
}

.global-header .global-nav a:hover {
    opacity: 0.8;
}

.global-header .cta-button-small {
    background-color: var(--color-hero-text1);
    color: var(--color-primary) !important;
}

.global-header .cta-button-small:hover {
    opacity: 0.9;
}

.global-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-logo img {
    height: 55.688481675393px;
    display: block;
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.global-footer {
    background-color: var(--color-accent);
    color: var(--color-text);
    padding: 50px 0 20px 0;
    border-top: 1px solid var(--color-border);
}

.global-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info, .footer-links {
    flex: 1;
    min-width: 250px;
}

.global-footer h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.global-footer p, .global-footer a {
    color: var(--color-text-light);
    text-decoration: none;
    line-height: 1.8;
}

.global-footer a:hover {
    color: var(--color-secondary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    font-size: 0.9em;
    color: var(--color-text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .global-nav {
        display: none; 
    }
    .footer-content {
        flex-direction: column;
    }
}