/*
Theme Name: Rock Mount Real Estate
Theme URI: https://example.com/rock-mount
Author: Antigravity
Author URI: https://example.com
Description: A custom WordPress theme for Rock Mount Real Estate with deep Elementor integration.
Version: 1.0.0
Text Domain: rockmount
*/

/* Reset & Base Styles */
:root {
    --primary-color: #031e3c; /* Custom Dark Blue */
    --secondary-color: #e5a435; /* Gold/Orange */
    --text-color: #333333;
    --text-light: #777777;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Button Base */
.rm-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.rm-btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.rm-btn-primary:hover {
    background-color: #d1942a;
    color: var(--white);
}

.rm-btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.rm-btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Theme Layout Helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
