/*
Theme Name: GeneratePress Child - CompareHarga
Theme URI: https://compareharga.com
Description: Child theme untuk CompareHarga.com - situs perbandingan harga & review produk Indonesia
Template: generatepress
Version: 1.0.0
Author: CompareHarga
Text Domain: generatepress-child
*/

/* ===========================================
   Custom styling spesifik untuk compareharga.com
   =========================================== */

/* Header tweak */
.main-navigation .main-nav ul li a {
    font-weight: 500;
}

/* Search form di header */
.ch-header-search {
    max-width: 400px;
    margin: 0 auto;
}

/* Hero section di homepage */
.ch-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 12px;
}
.ch-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
}
.ch-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* Category cards di homepage */
.ch-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.ch-category-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #111827;
    transition: all 0.2s;
}
.ch-category-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

/* Single review enhancement */
.ch-single-review .entry-content {
    max-width: 720px;
    margin: 0 auto;
}
.ch-single-review h2 {
    margin-top: 2rem;
}

/* Footer adjustment */
.site-footer {
    background: #1f2937;
}
.site-footer .site-info {
    color: #9ca3af;
}

/* Mobile tweaks */
@media (max-width: 600px) {
    .ch-hero h1 {
        font-size: 1.75rem;
    }
    .ch-hero p {
        font-size: 1rem;
    }
}
