/* Custom styles and overrides */

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

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

/* Input focus styles */
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
}

/* Image placeholder fallback */
img {
    background-color: #f3f4f6;
}

/* Mobile menu transitions */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.active {
    max-height: 300px;
}

/* Subtle hover effect on cards */
.group:hover {
    transform: translateY(-2px);
}

/* Gradient text effect for hero */
.gradient-text {
    background: linear-gradient(135deg, #FF7F5F 0%, #FF6347 50%, #E5533D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ensure proper spacing for fixed navbar */
body {
    padding-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}
