/* Custom KJ Films Styles */

/* Global Font Family - Roboto */
* {
    font-family: 'Roboto', sans-serif !important;
}

body {
    font-family: 'Roboto', sans-serif !important;
}

/* Black and White Theme - Convert backgrounds and text to B&W */
/* Keep buttons colored, convert icons to white */

/* Override colored text spans in headings to white */
h1 span[class*="text-blue"],
h1 span[class*="text-green"],
h1 span[class*="text-yellow"],
h1 span[class*="text-purple"],
h2 span[class*="text-blue"],
h2 span[class*="text-green"],
h2 span[class*="text-yellow"],
h2 span[class*="text-purple"],
h3 span[class*="text-blue"],
h3 span[class*="text-green"],
h3 span[class*="text-yellow"],
h3 span[class*="text-purple"] {
    color: white !important;
}

/* Convert ALL icons to white/grayscale everywhere */
i,
i[class*="fa-"],
i[class*="fas"],
i[class*="far"],
i[class*="fab"],
i[class*="text-blue"],
i[class*="text-green"],
i[class*="text-yellow"],
i[class*="text-purple"],
i[class*="text-red"],
i[class*="text-orange"],
i[class*="text-pink"],
i[class*="text-indigo"],
.fa-video,
.fa-bullhorn,
.fa-ad,
.fa-camera,
.fa-utensils,
.fa-shopping-cart,
.fa-hard-hat,
.fa-home,
.fa-chart-line,
.fa-eye,
.fa-location-dot,
.fa-rocket,
.fa-check,
.fa-calendar-check,
.fa-check-circle,
.fa-play,
.fa-star,
.fa-heart,
.fa-bolt,
.fa-phone,
.fa-envelope,
.fa-map-marker-alt {
    color: white !important;
}

/* Override even inline styles and Tailwind classes */
[class*="text-blue"] i,
[class*="text-green"] i,
[class*="text-yellow"] i,
[class*="text-purple"] i {
    color: white !important;
}

/* Keep checkmarks in success messages green */
.bg-green-500\/20 i,
#form-success i {
    color: #4ade80 !important;
}

/* Convert gradient backgrounds to grayscale */
.hero-video-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #0a0a0a 100%) !important;
}

.service-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #111111 100%) !important;
}

.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%) !important;
}

.value-card,
.process-step,
.about-feature-card {
    background: rgba(20, 20, 20, 0.5) !important;
}

.value-card:hover,
.process-step:hover {
    background: rgba(30, 30, 30, 0.8) !important;
}

/* Convert portfolio and card gradients to B&W */
.portfolio-image-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%) !important;
}

.industry-card:hover {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%) !important;
}

/* Form data card - convert gradient to B&W */
#form-data-card {
    background: linear-gradient(to bottom right, rgba(40, 40, 40, 0.3), rgba(60, 60, 60, 0.3)) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Service detail card */
.service-detail-card {
    background: rgba(20, 20, 20, 0.5) !important;
}

.service-detail-card:hover {
    background: rgba(30, 30, 30, 0.8) !important;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-secondary {
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid #3b82f6;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Spacing */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #9ca3af;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Industry Cards */
.industry-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.industry-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Value Cards */
.value-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(31, 41, 55, 0.8);
    border-color: #3b82f6;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Portfolio Cards */
.portfolio-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.portfolio-image-placeholder {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    color: white;
    font-weight: 600;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.badge-green { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.badge-yellow { background: rgba(234, 179, 8, 0.2); color: #facc15; }
.badge-purple { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.badge-red { background: rgba(239, 68, 68, 0.2); color: #f87171; }

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(31, 41, 55, 0.8);
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step p {
    color: #9ca3af;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-icon:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-3px);
}

.social-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-icon-large:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-3px);
}

/* Service Detail Cards */
.service-detail-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1.5rem;
    padding: 3rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    background: rgba(31, 41, 55, 0.8);
    border-color: #3b82f6;
}

/* About Feature Cards */
.about-feature-card {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    border-color: #3b82f6;
    transform: translateX(5px);
}

/* Filter Buttons */
.filter-btn {
    padding: 0.5rem 1.5rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: #374151;
    border-color: #3b82f6;
}

.filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

/* Form Styles */
input, select, textarea {
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Calendly Widget Customization */
.calendly-inline-widget {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #374151;
}

.calendly-inline-widget iframe {
    border-radius: 1rem;
}

/* Calendly loading state */
.calendly-spinner {
    background: #1f2937;
}
