/* Custom Styles & Animations */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0F0F0F;
    color: white;
}

/* Geometric shape decorations */
.hero-shape {
    position: absolute;
    z-index: -1;
}

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

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

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

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

/* Utility for text selection */
::selection {
    background: #FF6B4A;
    color: white;
}

/* Fade in animation for elements */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Pulse animation for CTA */
@keyframes pulse-coral {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 74, 0);
    }
}

.pulse-btn {
    animation: pulse-coral 2s infinite;
}
