/*
Theme Name: Plaza Digital Theme
Theme URI: https://plazadigital.id
Author: AI Assistant
Author URI: https://google.com
Description: Tema WordPress custom yang ringan, didesain khusus untuk Elementor dengan gaya Plaza Digital.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
*/

/* --- RESET & BASIC --- */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background-color: #f8fafc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* --- VARIABLES (Warna Plaza Digital) --- */
:root {
    --primary-blue: #1e3a8a; /* Biru Gelap Utama */
    --primary-light: #2563eb; /* Biru Terang */
    --accent-gold: #eab308;   /* Kuning Emas */
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

/* --- KOMPONEN UI KHUSUS --- */

/* 1. Header/Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 50%, #312e81 100%);
    color: white;
}

/* 2. Tombol Emas (Gunakan class 'btn-gold' di Elementor) */
.btn-gold, .btn-gold a {
    background-color: var(--accent-gold) !important;
    color: var(--primary-blue) !important;
    font-weight: 800 !important;
    padding: 12px 24px;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(234, 179, 8, 0.4);
    display: inline-block;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    background-color: #facc15 !important;
    box-shadow: 0 15px 20px -3px rgba(234, 179, 8, 0.5);
}

/* 3. Kartu Produk (Gunakan class 'product-card' di Elementor) */
.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 1.5rem;
}

/* 4. Navbar Sticky */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- ELEMENTOR COMPATIBILITY --- */
/* Mencegah konflik lebar container */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px; 
}