/* index.css — Picant3 Styles */

/* Custom Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.05);
    }
}

/* Base Classes */
.glass-panel {
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    border-color: rgba(225, 29, 72, 0.3);
    background: rgba(24, 24, 27, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(225, 29, 72, 0.05);
}

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

.bg-gradient-spicy {
    background: linear-gradient(135deg, #E11D48 0%, #EA580C 100%);
}

.glow-spicy {
    box-shadow: 0 0 30px rgba(225, 29, 72, 0.25);
    transition: all 0.3s ease;
}

.glow-spicy:hover {
    box-shadow: 0 0 45px rgba(225, 29, 72, 0.45);
}

.blob {
    position: absolute;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    animation: pulse-slow 8s infinite ease-in-out;
}

/* Material Symbols configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    transition: all 0.3s ease;
}

.group:hover .material-symbols-outlined {
    transform: scale(1.1);
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Styles */
input, textarea {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.15);
}

/* Hide scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Fade in Scroll Animations classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
