/* CSS Moderne Kuwait Oil Investment */

/* Variables CSS */
:root {
    --primary-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Barre Date/Heure et Google Translate */
.datetime-bar {
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(139,69,19,0.8) 50%, rgba(0,0,0,0.9) 100%);
    border-bottom: 1px solid #FFD700;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

.datetime-bar .text-gold {
    color: #FFD700 !important;
    font-weight: 500;
}

.datetime-bar small {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.datetime-bar strong {
    color: #FFA500;
    font-weight: 600;
}

/* Google Translate centré et stylisé */
#google_translate_element {
    display: flex;
    justify-content: center;
    align-items: center;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid #FFD700 !important;
    color: #FFD700 !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    min-width: 140px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.goog-te-gadget .goog-te-combo:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    border-color: #FFA500 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3) !important;
}

.goog-te-gadget .goog-te-combo:before {
    content: "🌐 Language" !important;
    margin-right: 8px !important;
    font-weight: 500 !important;
}

/* Séparation date/heure */
.datetime-separator {
    margin: 0 15px;
    color: #FFD700;
    opacity: 0.5;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .datetime-bar .col-md-4 {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .datetime-bar .text-md-end {
        text-align: center !important;
    }
    
    .goog-te-gadget .goog-te-combo {
        min-width: 120px !important;
        font-size: 11px !important;
    }
}

/* Hero Section Moderne avec Dégradé Marron */
.hero-modern {
    position: relative;
    background: linear-gradient(135deg, #2d1810 0%, #4a2c1a 25%, #8B4513 50%, #A0522D 75%, #CD853F 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(205, 133, 63, 0.2) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    animation: heroFlow 20s ease-in-out infinite alternate;
}

@keyframes heroFlow {
    0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.4; }
    100% { transform: translateY(-20px) scale(1.05) rotate(2deg); opacity: 0.8; }
}

