/* styles.css */
:root {
    /* Brand Colors */
    --color-primary: #FF7A00;
    --color-primary-light: #FF9736;
    --color-primary-lighter: #FFBC7D;
    
    /* Dark Theme Palette */
    --bg-dark: #0f172a;      /* Slate 900 */
    --bg-card: #1e293b;      /* Slate 800 */
    --bg-card-hover: #334155; /* Slate 700 */
    
    --text-main: #f8fafc;    /* Slate 50 */
    --text-muted: #94a3b8;   /* Slate 400 */
    --border-color: #334155; /* Slate 700 */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Utilities */
.glass-panel {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }

/* Tailwind Custom Overrides */
.text-primary { color: var(--color-primary); }
.bg-primary { background-color: var(--color-primary); }
.border-primary { border-color: var(--color-primary); }

.hover\:text-primary:hover { color: var(--color-primary-light); }
.hover\:bg-primary:hover { background-color: var(--color-primary-light); }

/* Card Hover Effects */
.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border-color: var(--color-primary-light);
}