/*
Theme Name: Hello Elementor Child
Theme URI: https://yourdomain.com
Description: Child theme for Hello Elementor - Real Estate Modern Site
Author: Your Name
Author URI: https://yourdomain.com
Template: hello-elementor
Version: 1.0
Text Domain: hello-elementor-child
*/

/* Brand Colors */
:root {
    --brand-red: #eb3729;
    --brand-dark-red: #7e1416;
    --brand-white: #ffffff;
    --brand-dark: #1a1a2e;
    --brand-light-gray: #f8f9fa;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Homepage Content Spacing */
.homepage-content {
    padding: 60px 40px;
}

.entry-content {
    max-width: 1600px;
    margin: 0 auto;
}

/* Reduce white space on body/page wrapper */
body .site-main,
body #primary {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Full width containers */
.site-main,
#primary {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .homepage-content {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .homepage-content {
        padding: 0px 20px;
    }
}
