/*
Theme Name: Bhairav Metal High-Octane
Author: Krish Jain
Author URI: https://krishhhh.com/
Description: A custom, high-impact theme with fluid animations for premium kitchen appliances and steel products.
Version: 1.0
Text Domain: bhairavmetal
*/

:root {
    --steel-dark: #0a0a0a;
    --steel-mid: #1f1f1f;
    --steel-light: #e0e0e0;
    --neon-accent: #00ffcc;
    --glass-bg: rgba(10, 10, 10, 0.75);
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--steel-dark);
    color: var(--steel-light);
    overflow-x: hidden;
}

/* Glassmorphism Header */
.glass-header {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cinematic Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--steel-mid) 0%, var(--steel-dark) 100%);
    position: relative;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* Neon Button Interaction */
.neon-btn {
    background: transparent;
    border: 2px solid var(--neon-accent);
    color: var(--neon-accent);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

.neon-btn:hover {
    background: var(--neon-accent);
    color: var(--steel-dark);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}