/* assets/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --brand-red: #B71C1C; /* Approximate Mittal Red */
    --brand-red-dark: #7F0000;
    --text-primary: #1F2937;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --neon-accent: #D32F2F; 
}

body {
    font-family: 'Fira Sans', sans-serif;
    background-color: #f3f4f6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(183, 28, 28, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(31, 41, 55, 0.05) 0%, transparent 20%);
    scroll-behavior: smooth;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 230, 230, 0.5);
}

/* Futuristic Text Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--brand-red) 0%, #1F2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.hover-glow:hover {
    box-shadow: 0 0 15px rgba(183, 28, 28, 0.4);
    transition: all 0.3s ease;
}

/* Hero Shape */
.hero-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-bg-poly {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}
