/* JLD Lighting Design - Custom Theme Styles */

/* Enhanced animations and transitions */
* {
    scroll-behavior: smooth;
}

/* Custom gradient backgrounds */
.bg-warm-gradient {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%);
}

/* Enhanced button styles */
.btn-primary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Custom card hover effects */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: #F59E0B;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonial carousel custom styles */
.testimonial-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Custom form styles */
.form-input {
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    outline: none;
}

/* Loading and animation states */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #F59E0B;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile navigation enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie banner specific styles */
.cookie-consent-banner {
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Accessibility improvements */
.focus-visible:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
}

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

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

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

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

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}