/* Custom Styles for Kopf & Kohle */

/* Variables */
:root {
    --color-deep-black: #0a0a0a;
    --color-ember-orange: #ff4d00;
    --color-smoke-grey: #333333;
}

body {
    background-color: var(--color-deep-black);
    color: #eee;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Neon Glow Effect */
.neon-text {
    text-shadow: 0 0 1px var(--color-ember-orange),
                 0 0 3px var(--color-ember-orange);
}

.neon-box {
    box-shadow: 0 0 5px var(--color-ember-orange),
                0 0 10px var(--color-ember-orange);
    transition: all 0.3s ease-in-out;
}

.neon-box:hover {
    box-shadow: 0 0 10px var(--color-ember-orange),
                0 0 20px var(--color-ember-orange),
                0 0 30px var(--color-ember-orange);
}

/* Ember Pulse Animation */
@keyframes ember-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 0, 0);
    }
}

.ember-pulse {
    animation: ember-pulse 2s infinite;
}

/* Smoke Animation Background */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.3;
}

.smoke {
    position: absolute;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(100,100,100,0.5) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: drift 20s infinite linear;
}

.smoke:nth-child(1) {
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.smoke:nth-child(2) {
    bottom: 20%;
    right: -10%;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.2) 0%, rgba(0,0,0,0) 70%); /* Orange tinted smoke */
    animation-duration: 30s;
    animation-delay: -5s;
}

.smoke:nth-child(3) {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vh;
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg);
        opacity: 0.5;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.3;
    }
}

/* Utility for gradients */
.bg-gradient-ember {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.text-gradient-ember {
    background: linear-gradient(to right, #ff4d00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
