/*
Theme Name: GeneratePress Child - Emas Kediri
Theme URI: https://terimaemastanpasurathargatinggikediri.com
Description: Child theme untuk GeneratePress dengan style menyerupai SpesialGold
Author: Ahmad Emas
Template: generatepress
Version: 1.0.0
*/

/* Import parent theme style */
@import url("../generatepress/style.css");

/* ============================================
   SPESIALGOLD-INSPIRED STYLING
   ============================================ */

/* Color Scheme - Gold Theme */
:root {
    --primary-gold: #FFD700;
    --dark-gold: #B8860B;
    --light-gold: #FFF8DC;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --border-color: #E0E0E0;
    --success-green: #28a745;
    --white: #FFFFFF;
}

/* General Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: #F5F5F5;
    line-height: 1.6;
}

/* Header Styling */
.site-header {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-title a {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Main Content Area */
.site-content {
    background: var(--white);
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Price Table Styling - SpesialGold Style */
.price-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.price-table thead {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    color: var(--white);
}

.price-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
}

.price-table tbody tr:hover {
    background-color: var(--light-gold);
    transition: background-color 0.3s ease;
}

.price-table .kadar-column {
    font-weight: 600;
    color: var(--dark-gold);
}

.price-table .price-column {
    font-weight: 700;
    color: var(--success-green);
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    color: var(--white);
    padding: 20px;
    margin: 30px 0 20px 0;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Feature Boxes */
.feature-box {
    background: var(--white);
    padding: 25px;
    margin: 15px 0;
    border-left: 5px solid var(--primary-gold);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.feature-box h3 {
    color: var(--dark-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.6);
    color: var(--white);
}

/* WhatsApp Button Specific */
.wa-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.wa-button:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Tables */
@media screen and (max-width: 768px) {
    .price-table {
        font-size: 0.9rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }
    
    .section-header {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .site-title a {
        font-size: 1.4rem;
    }
}

/* Mobile Optimization */
@media screen and (max-width: 480px) {
    .price-table {
        display: block;
        overflow-x: auto;
    }
    
    .cta-button {
        width: 100%;
        margin: 10px 0;
    }
}

/* Footer Styling */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;
}

.site-footer a {
    color: var(--primary-gold);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--light-gold);
}
