/* Custom Fonts */
@font-face {
    font-family: 'Terminat';
    src: url('assets/fonts/TERMINAT.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ImpactCustom';
    src: url('assets/fonts/American Captain.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base custom utility styles */
body {
    background-color: #050505; /* Deep black */
    color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* Glowing container background with subtle red/orange tones */
.radial-glow {
    background: radial-gradient(circle at center, rgba(255, 60, 0, 0.1) 0%, rgba(5,5,5,1) 60%);
}

/* Visibility classes for form sliding animation */
.hidden-step {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6600; /* Orange hover */
}

/* Smoother inputs */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
    -webkit-text-fill-color: white !important;
}

/* Custom Gradients and Animations */
.text-gradient {
    background-image: linear-gradient(to right, #ff0a18, #ff6600, #ffcc00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-logo {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Modern Card Hover Shadows */
.card-hover-fx {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-fx:hover {
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 10, 24, 0.5);
    transform: translateY(-5px);
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}
.animate-breathing {
    animation: breathing 6s ease-in-out infinite;
}
