/*
Theme Name: May Reed Real Estate
Theme URI: https://example.com
Author: May Reed
Author URI: https://example.com
Description: Conversion-focused WordPress theme for a San Antonio real estate business. Built to pair well with Elementor and IDX plugins.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: may-reed-real-estate
Tags: custom-logo, custom-menu, featured-images, one-column, two-columns, right-sidebar, flexible-header, accessibility-ready
*/

/* Minimal base styling. Use Elementor for page layouts. */
:root {
  --mrre-max: 1140px;
  --mrre-pad: 18px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  color: #111;
  background: #fff;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

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

.mrre-header {
  border-bottom: 1px solid #eee;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.mrre-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}
.mrre-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mrre-brand__title {
  font-weight: 700;
  letter-spacing: .2px;
}
.mrre-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mrre-nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
}
.mrre-nav a:hover { background: #f5f5f5; }

.mrre-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #111;
  font-weight: 600;
  white-space: nowrap;
}
.mrre-cta:hover { transform: translateY(-1px); }

.mrre-main {
  padding: 24px 0 56px;
}

.mrre-footer {
  border-top: 1px solid #eee;
  padding: 28px 0;
  color: #444;
}
.mrre-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .mrre-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.mrre-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px;
}

.mrre-hero {
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 26px;
}
.mrre-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}
.mrre-hero p {
  margin: 0 0 16px;
  color: #333;
  font-size: 18px;
}
.mrre-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.mrre-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid #111;
  font-weight: 650;
}
.mrre-btn--primary {
  background: #111;
  color: #fff;
}
.mrre-btn--ghost {
  background: #fff;
  color: #111;
}

.mrre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 900px) {
  .mrre-grid { grid-template-columns: repeat(3, 1fr); }
}

.mrre-muted { color: #555; }
.mrre-kicker { font-weight: 700; letter-spacing: .8px; text-transform: uppercase; font-size: 12px; color: #555; }
