/* ==========================================================================
   GigaMax Custom Dark Theme Overrides
   Forced Dark Layering with Green & Orange Accents
   ========================================================================== */

/* Force variables at the highest priority level */
:root, html, body {
    --white: #ffffff !important;
    
    /* Deep Slate Backgrounds */
    --neutral-50:  #0b0f19 !important; 
    --neutral-100: #111827 !important; 
    --neutral-200: #1f2937 !important; 
    --neutral-300: #374151 !important; 
    --neutral-400: #4b5563 !important; 
    --neutral-500: #9ca3af !important; 
    --neutral-600: #d0d5dd !important; 
    --neutral-700: #e4e4e7 !important; 
    --neutral-800: #f4f5f7 !important; 
    --neutral-900: #fbf9fa !important; 
    --neutral-950: #ffffff !important;

    /* Brand Green Accents */
    --primary-color: #3EC444 !important; 
    --primary: #00a86b !important;
    --primary-lifted: #00c47d !important;
    --primary-accented: #008f5a !important;

    /* Brand Orange Accents */
    --secondary-color: #f54a00 !important;
    --secondary: #f54a00 !important;
    --secondary-lifted: #ff601c !important;
    --secondary-accented: #ca3500 !important;

    /* Core Utility Mapping */
    --bg: #0b0f19 !important;
    --bg-muted: #111827 !important;
    --bg-lifted: #1f2937 !important;
    --text: #f4f5f7 !important;
    --text-muted: #9ca3af !important;
    
    background-color: #0b0f19;
    color: #3EC444 !important;
}


/* ==========================================================================
   Homepage Australian Server Banner Styling
   ========================================================================== */
.au-hero-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: url('../images/au-servers-banner.webp') no-repeat center center;
    background-size: cover;
    margin-bottom: 40px;
    border-bottom: 3px solid #3EC443; /* Logo Green Accent Line */
}

/* Dark overlay to ensure white/orange text stands out clearly over the image */
.au-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.75); /* Matches your dark slate theme */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.au-banner-content {
    text-align: center;
    max-width: 800px;
}

.au-banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.au-banner-content p {
    font-size: 1.2rem;
    color: #f4f5f7 !important;
    margin-bottom: 25px;
}

/* Call to action button tweak inside banner */
.au-banner-content .btn-primary {
    background-color: #E57A2C !important; /* Your Deep Orange logo color */
    border-color: #E57A2C !important;
    font-weight: 600;
    padding: 12px 30px;
}

.au-banner-content .btn-primary:hover {
    background-color: #F8B334 !important; /* Transitions to Bright Yellow/Orange on hover */
    border-color: #F8B334 !important;
    color: #0b0f19 !important;
}
/* ==========================================================================
   GigaMax Flag Fix: Overrides International Telephone Sprite for AU
   ========================================================================== */
.iti-flag.us,
.iti-flag,
[class*="flag-icon-us"],
.flag-icon-us {
    background-image: url('/assets/img/flags/au.png') !important;
    background-position: center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    width: 20px !important;
    height: 15px !important;
    display: inline-block !important;
}
