/* Custom Styles for Energy Super Power */

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

/* Clip Path for Hero */
.clip-diagonal {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

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

::-webkit-scrollbar-track {
    background: #330e1b;
}

::-webkit-scrollbar-thumb {
    background: #c24d73;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fbbf24;
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

/* Form Focus States */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

/* Hard Shadow Utility */
.shadow-hard {
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 1);
}

.shadow-hard-sm {
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .clip-diagonal {
        clip-path: none;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .shadow-hard {
        box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    }
}
