/* ====================================================================
   AUTOCLAIMS PREMIUM THEME - CORE STYLES
   Version: 2.0 (Modern Tech Stack)
====================================================================
*/

/* 1. IMPORTS & FONTS
   Folosim Google Fonts temporar. In productie le descarcam local in /fonts/ 
   Outfit = Modern, Geometric (Headings)
   Plus Jakarta Sans = Tech, Clean (Body)
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Brand Palette - Deep Tech Blue & Vibrant Accents */
    --color-bg: #0B1120;       /* Darker Navy Background */
    --color-surface: #1E293B;  /* Lighter Navy for cards */
    --color-primary: #3B82F6;  /* Vivid Blue */
    --color-secondary: #6366f1; /* Indigo for gradients */
    --color-cta: #F59E0B;      /* Amber for High Contrast Actions */
    
    /* Text Colors */
    --text-main: #0F172A;      /* Slate 900 */
    --text-muted: #64748B;     /* Slate 500 */
    
    /* Spacing & Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --blur-val: 12px;
}

/* 2. GLOBAL RESET & TYPOGRAPHY */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #F8FAFC; /* Slate 50 */
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em; /* Tight tracking for modern feel */
}

/* 3. UTILITY CLASSES (CUSTOM) */

/* Text Gradients (Efect Premium) */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-val));
    -webkit-backdrop-filter: blur(var(--blur-val));
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* 4. BUTTONS & INTERACTIONS */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255,255,255,0.2), 
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-glow:hover::after {
    left: 100%;
    transition: 0.7s;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4); /* Blue glow */
}

/* 5. CUSTOM SCROLLBAR (Chrome/Safari/Edge) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* 6. ANIMATIONS */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal-load {
    animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}