/*
Theme Name: London Auto Directory Custom Styles
Description: Custom styling for hero section and category cards
Version: 1.0
*/

/* ===== LONDON AUTO DIRECTORY - CUSTOM HERO & DESIGN ===== */

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(rgba(26, 54, 100, 0.85), rgba(26, 54, 100, 0.85)), 
                url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1920&q=80') center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
    margin: 0 0 50px 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white !important;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-search-box {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #f97316;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category Cards Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #1a3664;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(26, 54, 100, 0.15);
    border-left-color: #f97316;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a3664 !important;
}

.category-desc {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.category-count {
    font-size: 14px;
    color: #f97316;
    font-weight: 600;
}

.category-btn {
    background: #1a3664;
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.category-btn:hover {
    background: #f97316 !important;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* Benefits Section */
.benefits-section {
    background: #f9fafb;
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a3664 !important;
}

.benefit-desc {
    color: #6b7280;
    line-height: 1.6;
}

/* Areas Section */
.areas-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.area-title {
    color: #1a3664 !important;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.area-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a3664 0%, #2d5a8c 100%);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    color: white;
    margin: 40px 0;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white !important;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    background: #f97316;
    color: white !important;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ea580c !important;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 60px 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-search-box {
        padding: 20px;
    }
    
    .category-card {
        padding: 20px;
    }
}
