/* Error Hunter Home Page - Clean Professional Theme */

/* Import theme variables */
@import url('theme.css');

:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #10b981;
    --dark-color: #1f2937;
    --light-bg: #f9fafb;
    --text-muted: #6b7280;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: #FFFFFF !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
    background: #FFFFFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #111827 !important;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.navbar-brand img {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.nav-link {
    color: #6b7280 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.2s ease;
    border-radius: 6px;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #2563eb !important;
    background-color: #f3f4f6;
}

.navbar-nav .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    font-weight: 500;
    border-radius: 8px;
}

.navbar-nav .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%) !important;
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    color: #111827;
    padding-top: 100px;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%232563eb" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,117.3C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: #111827;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .lead {
    color: #6b7280;
    font-size: 1.25rem;
}

.hero-section .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255,215,0,0.3));
    animation: float 3s ease-in-out infinite;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #FFFFFF;
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: floatCard 4s ease-in-out infinite;
    color: #000000;
}

.floating-card i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.floating-card small {
    color: #FFD700 !important;
    font-weight: 600;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 0%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Stats Section */
.stats-section {
    background: #FFD700 !important;
    padding: 2rem 0;
    color: #000000 !important;
}

.stats-section h3 {
    color: #000000;
    font-weight: 800;
}

.stats-section p {
    color: #000000 !important;
    font-weight: 600;
}

/* Features Section */
#features {
    background: #f5f5f5;
    padding: 5rem 0;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bg-primary-soft {
    background: #FFD700 !important;
}

.bg-success-soft {
    background: #FFF8DC !important;
}

.bg-warning-soft {
    background: #000000 !important;
}

.bg-info-soft {
    background: #f5f5f5 !important;
}

.bg-danger-soft {
    background: #1a1a1a !important;
}

.text-primary {
    color: #000000 !important;
}

.text-success {
    color: #000000 !important;
}

.text-warning {
    color: #FFD700 !important;
}

.text-info {
    color: #000000 !important;
}

.text-danger {
    color: #FFD700 !important;
}

/* How It Works Section */
#how-it-works {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 5rem 0;
    color: #FFFFFF;
}

#how-it-works h2 {
    color: #FFFFFF;
}

#how-it-works .lead {
    color: #FFD700;
}

.step-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 3px solid #FFD700;
    color: #000000;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,215,0,0.3);
}

.step-number {
    background: #FFD700;
    color: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

/* Pricing Section */
#pricing {
    background: #f5f5f5;
    padding: 5rem 0;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #FFD700;
}

.pricing-card.featured {
    border: 3px solid #FFD700;
    transform: scale(1.05);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
}

.price-period {
    font-size: 1rem;
    color: #666666;
}

/* Testimonials Section */
#testimonials {
    background: #FFFFFF;
    padding: 5rem 0;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-rating {
    color: #FFD700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    padding: 4rem 0;
    color: #000000;
}

.cta-section h2 {
    color: #000000;
    font-weight: 800;
}

.cta-section .btn-dark {
    background: #000000 !important;
    color: #FFD700 !important;
    border: 2px solid #000000 !important;
}

.cta-section .btn-dark:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #000000;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    border-top: 3px solid #FFD700;
}

.footer a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFD700;
    text-decoration: none;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #FFD700;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

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

/* Buttons Override */
.btn-primary {
    background: #FFD700 !important;
    border-color: #FFD700 !important;
    color: #000000 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #FFC700 !important;
    border-color: #FFC700 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.btn-success {
    background: #FFD700 !important;
    border-color: #FFD700 !important;
    color: #000000 !important;
    font-weight: 600;
}

.btn-success:hover {
    background: #FFC700 !important;
    border-color: #FFC700 !important;
    transform: translateY(-2px);
}

.btn-dark {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #FFD700 !important;
}

.btn-dark:hover {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    border-width: 2px;
}

.btn-outline-light:hover {
    background: #FFFFFF !important;
    color: #000000 !important;
}

/* Badge Override */
.badge.bg-danger {
    background: #FFD700 !important;
    color: #000000 !important;
    border: 2px solid #000000;
}

/* Alert Override */
.alert-warning {
    background: #FFF8DC !important;
    border: 2px solid #FFD700 !important;
    color: #000000 !important;
}

/* Text Color Override */
.text-warning {
    color: #FFD700 !important;
}

.text-success {
    color: #FFD700 !important;
}

.bg-warning {
    background: linear-gradient(90deg, #FFD700 0%, #FFC700 100%) !important;
}

.bg-dark {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background: #000000;
    border: 2px solid #FFD700;
}

.dropdown-item {
    color: #FFFFFF;
}

.dropdown-item:hover {
    background: #FFD700;
    color: #000000;
}

/* Social Proof Banner */
.social-proof-banner {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%) !important;
    border-bottom: 2px solid #FFD700 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-image-wrapper {
        height: 300px;
    }
    
    .floating-card {
        display: none;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .stats-section h3 {
        font-size: 1.5rem;
    }
}