/**
 * Socionext-specific CSS
 * 
 * @author Bodo Hoffmann
 * @version 1.0
 * @since 2025
 */

/* Socionext Brand Colors */
:root {
    --socionext-blue: #1c2857;
    --socionext-light-blue: #2a3a6b;
    --socionext-white: #ffffff;
    --socionext-gray: #f8fafc;
}

/* Header Styling for Socionext */
header.bg-white {
    background-color: var(--socionext-blue) !important;
    border-bottom: none !important;
    box-shadow: 0 2px 4px rgba(28, 40, 87, 0.1) !important;
}

/* Logo styling */
header img {
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Language selector styling */
header select#languageSelect {
    background-color: var(--socionext-light-blue) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: var(--socionext-white) !important;
    transition: all 0.3s ease;
}

header select#languageSelect:hover {
    background-color: var(--socionext-light-blue) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

header select#languageSelect:focus {
    background-color: var(--socionext-light-blue) !important;
    border-color: var(--socionext-white) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2) !important;
}

/* Language selector options */
header select#languageSelect option {
    background-color: var(--socionext-light-blue);
    color: var(--socionext-white);
}

/* Company name text color */
header .text-2xl.font-bold {
    color: var(--socionext-white) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header.bg-white {
        padding: 0.75rem 0 !important;
    }
    
    header select#languageSelect {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Additional Socionext branding elements */
.btn-primary {
    background-color: var(--socionext-blue) !important;
    border-color: var(--socionext-blue) !important;
}

.btn-primary:hover {
    background-color: var(--socionext-light-blue) !important;
    border-color: var(--socionext-light-blue) !important;
}

/* Focus states for accessibility */
header select#languageSelect:focus-visible {
    outline: 2px solid var(--socionext-white);
    outline-offset: 2px;
} 