/*
Theme Name: Ratu Property Solo 2025
Theme URI: https://ratuproperty.com
Author: Ratu Property Team
Author URI: https://ratuproperty.com
Description: Tema custom untuk perusahaan properti dan kontraktor Ratu Property.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ratu-property
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
    --maroon: #800020;
    --gold: #FFD700;
    --dark-gold: #D4AF37;
    --light-gray: #f5f5f5;
    --dark-gray: #333;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

/* Dark mode variables */
[data-theme="dark"] {
    --maroon: #a83232;
    --gold: #e6c300;
    --light-gray: #2a2a2a;
    --dark-gray: #f5f5f5;
    --white: #1a1a1a;
    --black: #ffffff;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    transition: background-color 0.3s, color 0.3s;
}

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

a:hover {
    color: var(--gold);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--maroon);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
    text-align: center;
}

.btn:hover {
    background-color: var(--gold);
    color: var(--dark-gray);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark-gray);
}

.btn-gold:hover {
    background-color: var(--maroon);
    color: var(--white);
}

/* Section styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--maroon);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

/* Grid styles */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
}