/*
Theme Name: GinGiu Theme
Theme URI: https://gingiu.com
Author: GinGiu Team
Author URI: https://gingiu.com
Description: Theme WordPress tùy chỉnh cho GinGiu.com - Dịch vụ Hồi Ký Gia Đình, Phục Chế Ảnh, và Tranh Gia Phả.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gingiu
Tags: custom, family, vietnamese, memoir

GinGiu Theme - Gìn Giữ Nếp Nhà
*/

/* ============================================
   TAILWIND CSS IMPORTS (Sẽ được load từ CDN)
   ============================================ */

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Merriweather', Georgia, serif;
}

/* Brand Colors */
:root {
    --deep-blue: #1e3a8a;
    --gold: #f59e0b;
    --cream: #fffbf0;
    --tet-red: #991b1b;
    --tet-gold: #fbbf24;
}

.bg-deep-blue {
    background-color: var(--deep-blue);
}

.text-deep-blue {
    color: var(--deep-blue);
}

.bg-gold {
    background-color: var(--gold);
}

.text-gold {
    color: var(--gold);
}

.bg-cream {
    background-color: var(--cream);
}

.bg-tet-red {
    background-color: var(--tet-red);
}

.text-tet-red {
    color: var(--tet-red);
}

/* WordPress Core Overrides */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.entry-content {
    max-width: 100%;
}

/* Hide admin bar on frontend for cleaner look */
body.admin-bar {
    margin-top: 0 !important;
}

#wpadminbar {
    display: none;
}

/* Animation */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}