/* Custom styles and overrides */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 74, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 74, 0.6); }
}

/* Utility animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Geometric shape animations */
.geometric-float-1 {
    animation: float 8s ease-in-out infinite;
}

.geometric-float-2 {
    animation: float 10s ease-in-out infinite reverse;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #FF6B4A 0%, #FF8566 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card hover effects */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Image hover zoom */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Form focus effects */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.2);
}

/* Mobile menu transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(18, 18, 18, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        background: linear-gradient(135deg, #121212 0%, #1E1E1E 50%, #2A2A2A 100%);
    }
}

/* Print styles */
@media print {
    nav,
    #contact-form,
    button {
        display: none !important;
    }
    
    body {
        color: #000 !important;
        background: #fff !important;
    }
}
