/*
Theme Name: Planning Maps Theme
Theme URI: https://createweb.us
Author: Createweb.US
Author URI: https://cloudthen.com
Description: A custom WordPress theme for Vietnam Planning Maps, featuring a modern, government-portal style interface.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: planning-maps-theme
*/

/* Reset & Base Styles */
:root {
    --primary-color: #003366;
    /* Deep Blue */
    --secondary-color: #d4af37;
    /* Gold */
    --accent-color: #f0f0f0;
    --text-color: #333;
    --bg-color: #fff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Tailwind Utilities (Mockup - these would be processed in a real build, 
   but for now we'll add some manual utility-like classes for immediate visual checking) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.font-bold {
    font-weight: bold;
}

.hidden {
    display: none;
}