/* 
 * IT Live Expert Master Style (V1)
 * Professionele, No-CDN CSS architectuur
 */

:root {
    --e-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --e-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --e-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --e-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Outfit', sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.5; color: var(--text); background: var(--surface); }
a { text-decoration: none; color: inherit; transition: var(--e-transition); }
img { max-width: 100%; height: auto; border-radius: 12px; }

/* Layout Utilities (Tailwind-like) */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) { .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

/* Typography */
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }

/* Expert Components */
.card-expert { background: #fff; border-radius: 24px; padding: 32px; border: 1px solid var(--border); transition: var(--e-transition); }
.card-expert:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: var(--e-shadow-xl); }

.btn-gold { 
    background: var(--accent); 
    color: #fff; 
    padding: 14px 32px; 
    border-radius: 999px; 
    font-weight: 800; 
    font-size: 14px; 
    text-transform: uppercase; 
    display: inline-flex; 
    align-items: center; 
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
}
.btn-gold:hover { transform: scale(1.05); filter: brightness(1.1); box-shadow: 0 10px 15px rgba(245, 158, 11, 0.3); }

/* Animations */
.e-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.e-reveal.active { opacity: 1; transform: translateY(0); }
.e-reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1s ease-out; }
.e-reveal-left.active { opacity: 1; transform: translateX(0); }
.e-reveal-right { opacity: 0; transform: translateX(40px); transition: all 1s ease-out; }
.e-reveal-right.active { opacity: 1; transform: translateX(0); }

/* Sections */
.header-midnight { 
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%); 
    padding: 140px 0 100px; 
    color: #fff; 
    border-radius: 0 0 64px 64px; 
    position: relative; 
    overflow: hidden;
}
.header-midnight::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
}
