/* ═══════════════════════════════════════════════════════════
   River City Realty — site stylesheet
   Same structure as the Chuck Fawcett Realty sheet; only the
   palette and the class prefix differ.

   PALETTE NOTE
   A deep red behind the hero photo reads as alarm, not as
   brand. So the large surfaces are a warm charcoal (#2b2725),
   which lets the photography come through the way navy did on
   CFR, and the red (#c0392b) carries the buttons, prices,
   headings and the seller band — one deliberate red block
   rather than a red page. Navy (#1b3a6b) stays as a small
   accent; both colours are in the flag on the logo.
   ═══════════════════════════════════════════════════════════ */

/* ============================================
   Chuck Fawcett Realty — Main Stylesheet
   68 Club Consulting
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: -apple-system, "Helvetica Neue", Arial, sans-serif; color: #222; background: #fff; }

/* ── NAV ── */
.rcr-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
}
.rcr-nav-logo img { height: 74px; display: block; }
.rcr-nav-links { display: flex; gap: 26px; align-items: center; }
.rcr-nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.rcr-nav-links a:hover { color: #fff; }
.rcr-nav-cta {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.88); padding: 8px 22px; font-size: 14px;
  border-radius: 7px; cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.rcr-nav-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); color: #fff; }

/* HAMBURGER */
.rcr-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.rcr-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.88); border-radius: 2px; }
.rcr-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #0d2240; z-index: 100; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: 0;
}
.rcr-mobile-menu.open { display: flex; }
.rcr-mobile-menu a {
  color: rgba(255,255,255,0.88); text-decoration: none; font-size: 18px;
  width: 100%; text-align: left; padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rcr-mobile-menu a:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.rcr-mobile-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.rcr-mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 36px; cursor: pointer; line-height: 1;
}

/* ── HERO ── */
.rcr-hero {
  position: relative; min-height: 540px;
  background: #2b2725;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding: 110px 24px 72px;
}
.rcr-hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?w=1600&q=80");
  /* If this image reads wrong for the market, swap the ID above. Alternates
     that are not used anywhere else on either site:
       photo-1598228723793-52759bba239c
       photo-1576941089067-2de3c901e126
       photo-1580216643062-cf460548a66a
     Better still: replace with a real local photo once Aimee sends one. */
  background-size: cover; background-position: center; opacity: 0.22;
}
.rcr-hero-content { position: relative; z-index: 2; text-align: center; width: 100%; max-width: 660px; }
.rcr-hero-eyebrow {
  font-family: Georgia, "Times New Roman", serif; font-style: italic;
  font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 14px;
}
.rcr-hero-headline {
  font-family: Georgia, "Times New Roman", serif; font-size: 52px; font-weight: 400;
  color: #fff; line-height: 1.1; margin-bottom: 12px;
}
.rcr-hero-sub { font-size: 15px; color: rgba(255,255,255,0.62); margin-bottom: 28px; line-height: 1.6; }

/* SEARCH */
.rcr-search-wrap { width: 100%; }
.rcr-search-tabs { display: flex; margin-bottom: 0; }
.rcr-search-tab {
  padding: 9px 20px; font-size: 12px; cursor: pointer; font-family: inherit;
  border: none; transition: all 0.18s; white-space: nowrap;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6);
}
.rcr-search-tab:first-child { border-radius: 8px 0 0 0; }
.rcr-search-tab:last-child { border-radius: 0 8px 0 0; }
.rcr-search-tab.active { background: #fff; color: #c0392b; font-weight: 500; }
.rcr-search-bar {
  display: flex; align-items: center; background: #fff;
  border-radius: 0 8px 8px 8px; overflow: hidden;
  box-shadow: 0 12px 44px rgba(0,0,0,0.30); width: 100%;
}
.rcr-search-input {
  flex: 1; padding: 17px 20px; border: none; outline: none;
  font-size: 15px; color: #222; font-family: inherit; min-width: 0;
}
.rcr-search-input::placeholder { color: #aaa; }
.rcr-search-btn {
  padding: 0 28px; height: 56px; background: #c0392b; border: none;
  color: #fff; font-size: 14px; cursor: pointer; border-radius: 0 8px 8px 0;
  font-family: inherit; white-space: nowrap; flex-shrink: 0; transition: background 0.2s;
}
.rcr-search-btn:hover { background: #9e2d22; }
.rcr-search-adv { margin-top: 12px; text-align: left; }
.rcr-adv-link { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: underline; cursor: pointer; }
.rcr-adv-link:hover { color: rgba(255,255,255,0.8); }

/* ── SHARED ── */
.rcr-eyebrow {
  font-family: Georgia, serif; font-style: italic;
  font-size: 14px; color: #1b3a6b; margin-bottom: 8px;
}
.rcr-section-title {
  font-family: Georgia, "Times New Roman", serif; font-size: 32px; font-weight: 400;
  color: #1a1a1a; line-height: 1.2; margin-bottom: 8px;
}
.rcr-section-sub { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 24px; }
.rcr-btn-outline {
  display: inline-block; padding: 10px 24px;
  border: 1.5px solid #c0392b; color: #c0392b;
  font-size: 13px; border-radius: 7px; text-decoration: none;
  background: transparent; font-family: inherit; transition: all 0.2s; margin-top: 24px;
}
.rcr-btn-outline:hover { background: #c0392b; color: #fff; }

/* ── LISTINGS ── */
.rcr-listings-section { padding: 64px 56px; max-width: 1160px; margin: 0 auto; }
.rcr-listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rcr-listing-card { border: 1px solid #e8e3dc; border-radius: 10px; overflow: hidden; }
.rcr-listing-img {
  height: 150px; display: flex; align-items: center; justify-content: center;
  position: relative; font-size: 11px; color: #bbb;
}
.rcr-listing-badge {
  position: absolute; top: 10px; left: 10px;
  background: #c0392b; color: #fff; font-size: 10px; border-radius: 5px; padding: 3px 8px;
}
.rcr-listing-body { padding: 16px 18px; }
.rcr-listing-price { font-family: Georgia, serif; font-size: 19px; color: #c0392b; }
.rcr-listing-addr { font-size: 13px; color: #555; margin-top: 4px; }
.rcr-listing-details { font-size: 11px; color: #999; margin-top: 3px; }

/* ── SELLER CTA ── */
.rcr-seller-section { background: #c0392b; padding: 72px 56px; text-align: center; }
.rcr-seller-eyebrow {
  font-family: Georgia, serif; font-style: italic;
  font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 12px;
}
.rcr-seller-title {
  font-family: Georgia, "Times New Roman", serif; font-size: 36px; font-weight: 400;
  color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.rcr-seller-sub {
  font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px;
  max-width: 440px; margin-left: auto; margin-right: auto;
}
.rcr-seller-btn {
  display: inline-block; padding: 14px 36px; background: #fff; color: #c0392b;
  font-size: 14px; border-radius: 8px; cursor: pointer; border: none;
  font-family: inherit; font-weight: 500; text-decoration: none; transition: background 0.2s;
}
.rcr-seller-btn:hover { background: #f0ece6; }

/* ── TRUST ROW ── */
.rcr-trust-row {
  background: #faf8f5; border-top: 1px solid #ece8e2; border-bottom: 1px solid #ece8e2;
  display: flex; justify-content: center;
}
.rcr-trust-row-inner {
  display: flex; max-width: 860px; width: 100%;
}
.rcr-trust-item {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 28px 32px; border-right: 1px solid #ece8e2; flex: 1;
}
.rcr-trust-item:last-child { border-right: none; }
.rcr-trust-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fbf1ef; border: 1px solid #d8e2f0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rcr-trust-icon svg { width: 18px; height: 18px; stroke: #c0392b; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.rcr-trust-num { font-family: Georgia, serif; font-size: 16px; color: #c0392b; line-height: 1.2; }
.rcr-trust-label { font-size: 12px; color: #888; margin-top: 2px; line-height: 1.4; }

/* ── AGENTS ── */
.rcr-section { padding: 64px 56px; max-width: 1160px; margin: 0 auto; }
.rcr-agents-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
.rcr-agent-card {
  border: 1px solid #ece2e0; border-radius: 10px; overflow: hidden;
  text-align: center; padding-bottom: 20px; background: #fff;
  box-shadow: 0 1px 3px rgba(43,39,37,0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.rcr-agent-card:hover {
  border-color: #9fb4d4; box-shadow: 0 6px 20px rgba(43,39,37,0.13);
  transform: translateY(-2px);
}
.rcr-agent-photo-wrap {
  height: 148px; background: #dce5f0;
  display: flex; align-items: center; justify-content: center;
}
.rcr-agent-photo-wrap { position: relative; height: 240px; overflow: hidden; }
.rcr-agent-photo-wrap svg { width: 48px; height: 48px; stroke: #9aafcb; fill: none; stroke-width: 1.2;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1; }
.rcr-agent-photo-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%; z-index: 2; }
.rcr-agent-name { font-size: 14px; font-weight: 600; color: #1a1a1a; margin-top: 14px; padding: 0 12px; }
.rcr-agent-role { font-size: 11px; color: #999; margin-top: 4px; padding: 0 12px; line-height: 1.5; }
.rcr-agent-link { font-size: 12px; color: #c0392b; margin-top: 10px; display: block; text-decoration: none; }
.rcr-agent-link:hover { text-decoration: underline; }

/* ── OFFICES ── */
.rcr-offices-outer { background: #faf8f5; padding: 64px 0; }
.rcr-offices-inner { max-width: 1160px; margin: 0 auto; padding: 0 56px; }
.rcr-offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
.rcr-office-card {
  background: #fff; border: 1px solid #e8e3dc; border-radius: 10px;
  padding: 24px 22px; display: flex; flex-direction: column; gap: 5px;
}
.rcr-office-city { font-family: Georgia, serif; font-size: 17px; color: #c0392b; margin-bottom: 4px; }
.rcr-office-addr { font-size: 13px; color: #555; line-height: 1.7; }
.rcr-office-phone { font-size: 13px; color: #c0392b; font-weight: 500; }
.rcr-office-fb { font-size: 12px; color: #1b3a6b; text-decoration: none; }
.rcr-office-fb:hover { text-decoration: underline; }

/* ── FOOTER ── */
.rcr-footer { background: #1c1917; padding: 56px 56px 32px; }
.rcr-footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; }
.rcr-footer-logo img { height: 52px; display: block; }
.rcr-footer-tagline { font-size: 13px; color: rgba(255,255,255,0.42); margin-top: 16px; line-height: 1.75; }
.rcr-footer-social { margin-top: 20px; display: flex; gap: 10px; }
.rcr-footer-social a {
  color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15); padding: 5px 16px; border-radius: 6px; transition: all 0.2s;
}
.rcr-footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.rcr-footer-col-title { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 16px; }
.rcr-footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.58); text-decoration: none; margin-bottom: 10px; }
.rcr-footer-col a:hover { color: #fff; }
.rcr-footer-col p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.8; }
.rcr-footer-bottom {
  max-width: 1160px; margin: 36px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: center;
}
.rcr-footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }


/* ── IDX WIDGET OVERRIDES ── */
.rcr-idx-widget-wrap { width: 100%; }

/* Card grid */
.rcr-idx-widget-wrap .idx-listings-showcase__properties {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  padding: 0 !important;
}

/* Individual card */
.rcr-idx-widget-wrap .idx-property-card__wrap {
  border: 1px solid #e8e3dc !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: none !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  background: #fff !important;
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif !important;
}
.rcr-idx-widget-wrap .idx-property-card__wrap:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10) !important;
  transform: translateY(-2px) !important;
}

/* Image */
.rcr-idx-widget-wrap .idx-property-card__image--wrap {
  height: 200px !important;
  overflow: hidden !important;
  display: block !important;
  border-radius: 10px 10px 0 0 !important;
}
.rcr-idx-widget-wrap .idx-property-card__image--wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Details area below image */
.rcr-idx-widget-wrap .idx-property-card__details {
  padding: 14px 16px 6px !important;
}

/* Price */
.rcr-idx-widget-wrap .idx-property-card__details [class*="price"],
.rcr-idx-widget-wrap .idx-property-card__details [class*="Price"] {
  font-family: Georgia, "Times New Roman", serif !important;
  color: #c0392b !important;
  font-size: 19px !important;
  font-weight: 400 !important;
}

/* Address */
.rcr-idx-widget-wrap .idx-property-card__details [class*="address"],
.rcr-idx-widget-wrap .idx-property-card__details [class*="Address"] {
  font-size: 12px !important;
  color: #555 !important;
}

/* MLS courtesy logo */
.rcr-idx-widget-wrap .idx-property-card__mls {
  display: none !important;
}

/* All links */
.rcr-idx-widget-wrap a { color: #c0392b !important; text-decoration: none !important; }

@media (max-width: 900px) {
  .rcr-idx-widget-wrap .idx-listings-showcase__properties {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 520px) {
  .rcr-idx-widget-wrap .idx-listings-showcase__properties {
    grid-template-columns: 1fr !important;
  }
}


/* ── IDX widget: hide the "View All" bar ──
   The Listings Showcase widget renders a grey bar above the cards. The
   cards live in .idx-listings-showcase__properties, so anything else that
   is a direct child of the showcase is chrome we don't want. Written this
   way because the bar's own class name is not documented anywhere. */
.rcr-idx-widget-wrap .idx-listings-showcase > *:not(.idx-listings-showcase__properties) {
  display: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .rcr-nav { padding: 18px 24px; }
  .rcr-nav-logo img { height: 52px; }
  .rcr-nav-links { display: none; }
  .rcr-hamburger { display: flex; }
  .rcr-hero { min-height: 500px; padding: 90px 20px 56px; }
  .rcr-hero-headline { font-size: 34px; }
  .rcr-hero-sub { font-size: 14px; }
  .rcr-listings-section { padding: 48px 24px; }
  .rcr-listings-grid { grid-template-columns: 1fr 1fr; }
  .rcr-seller-section { padding: 56px 24px; }
  .rcr-seller-title { font-size: 28px; }
  .rcr-trust-row-inner { flex-direction: column; width: 100%; }
  .rcr-trust-item { border-right: none; border-bottom: 1px solid #ece8e2; padding: 20px 24px; justify-content: flex-start; }
  .rcr-trust-item:last-child { border-bottom: none; }
  .rcr-section { padding: 48px 24px; }
  .rcr-agents-grid { grid-template-columns: 1fr 1fr; }
  .rcr-offices-inner { padding: 0 24px; }
  .rcr-offices-grid { grid-template-columns: 1fr 1fr; }
  .rcr-footer { padding: 48px 24px 28px; }
  .rcr-footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .rcr-hero-headline { font-size: 28px; }
  .rcr-listings-grid { grid-template-columns: 1fr; }
  .rcr-agents-grid { grid-template-columns: 1fr 1fr; }
  .rcr-offices-grid { grid-template-columns: 1fr 1fr; }
}


/* ── HOMEPAGE QUICK LINKS ── */
.rcr-quick-links {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px; margin-top: 32px; padding-top: 26px; border-top: 1px solid #ece8e2;
}
.rcr-quick-label {
  font-family: Georgia, serif; font-style: italic; font-size: 14px;
  color: #8a8a8a; margin-right: 6px;
}
.rcr-quick-links a {
  font-size: 13px; color: #c0392b; text-decoration: none;
  border: 1px solid #ece2e0; border-radius: 20px; padding: 8px 18px;
  background: #fff; transition: all 0.18s;
}
.rcr-quick-links a:hover {
  background: #c0392b; color: #fff; border-color: #c0392b;
}
@media (max-width: 620px) {
  .rcr-quick-links { gap: 8px; }
  .rcr-quick-label { width: 100%; text-align: center; margin: 0 0 4px; }
  .rcr-quick-links a { padding: 7px 14px; font-size: 12px; }
}
