/*
Theme Name: Saigongrandhomes
Theme URI: https://saigongrandhomes.com/
Author: Antigravity AI
Author URI: https://google.com/
Description: Một giao diện WordPress sang trọng, hiện đại dành riêng cho lĩnh vực bất động sản cao cấp và kiến trúc.
Version: 1.0.0
Text Domain: saigongrandhomes
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* --- Design System --- */
:root {
    /* Colors */
    --primary-color: #c5a059; /* Luxury Gold */
    --secondary-color: #001f3f; /* Deep Navy */
    --accent-color: #f7f7f7;   /* Light Gray */
    --text-color: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --dark: #1a1a1a;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
