:root {
  /* Palette matched to thevillagesfl4rent.com (iFeature theme blues) */
  --primary: #3599c7;       /* theme nav/accent blue */
  --primary-dark: #1e5f80;  /* darkened theme blue for dark sections */
  --sky: #4fadd8;           /* lighter theme blue */
  --muted: #5b7f93;         /* muted blue-gray for eyebrows, captions */
  --accent: #cd834a;        /* warm orange pulled from the theme */
  --link: #0088cc;          /* theme link/button blue */
  --base: #fdfdfd;          /* theme content background */
  --wash: #eef5f9;          /* light blue wash, section alternate */
  --ink: #37444d;
}

body {
  font-family: "Public Sans", system-ui, sans-serif;
  font-size: 1.125rem;               /* 18px base — easy reading for 55+ audience */
  line-height: 1.65;
  color: var(--ink);
  background: var(--base);
}

h1, h2, h3, .display-font {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--primary-dark);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.35;
}

a { color: var(--link); }
a:hover { color: var(--primary-dark); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.95rem;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url("images/5-min-to-sumter-landing.jpg") center / cover no-repeat,
              linear-gradient(135deg, #4fadd8, #3599c7 55%, #1e5f80);
  opacity: 0.85;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,95,128,0.35) 0%, rgba(23,72,97,0.78) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.12;
  text-shadow: 0 1px 2px rgba(23,72,97,0.5);
}
.hero p.lead { color: #e9e6dc; max-width: 44rem; }

.btn-sun {
  background: var(--link);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 0.5rem;
}
.btn-sun:hover { background: #006ea5; color: #fff; }

.btn-outline-light-lg {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
}
.btn-outline-light-lg:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Honesty ribbon — availability note as a design element */
.availability-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30,95,128,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.95rem;
  color: #fff;
  backdrop-filter: blur(4px);
}
.availability-note .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #aee0f5;
  box-shadow: 0 0 0 4px rgba(174,224,245,0.3);
}

/* ---------- Property cards ---------- */
.property-card {
  background: #fff;
  border: 1px solid #dde6ec;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 1px 2px rgba(30,95,128,0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.property-card:hover {
  box-shadow: 0 14px 34px rgba(30,95,128,0.14);
  transform: translateY(-3px);
}

/* REPLACE: property photos. Two per property; swap the src attributes below. */
.property-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #ddeaf2, #c3d9e6);
  display: block;
}
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }

/* Street-number plaque — the signature element */
.plaque {
  display: inline-block;
  background: var(--primary-dark);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 0.4rem;
  border: 2px solid var(--sky);
  margin-top: -1.9rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(23,72,97,0.3);
}

.spec-badge {
  background: var(--wash);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 0.4rem;
  padding: 0.35rem 0.7rem;
}

/* ---------- About strip ---------- */
.about-strip { background: var(--wash); }
.about-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.about-item .check {
  flex: 0 0 auto;
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid #dde6ec;
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--sky);
  display: block;
  margin-bottom: 0.25rem;
}
.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.testimonial-card figcaption {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}
.testimonial-card figcaption span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}
.testimonial-featured {
  background: #fff;
  border: 1px solid #dde6ec;
  border-left: 5px solid var(--primary);
  border-radius: 1rem;
  padding: 2rem 2.25rem;
}
.testimonial-featured blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  color: var(--primary-dark);
  margin: 0 0 1rem;
  line-height: 1.4;
}

/* ---------- Contact ---------- */
.contact-section { background: var(--primary-dark); color: #fff; }
.contact-section h2 { color: #fff; }
.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1rem;
}
.contact-card a { color: #aee0f5; text-decoration: none; font-weight: 700; }
.contact-card a:hover { text-decoration: underline; }
.contact-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c3dcea;
  font-weight: 700;
}

footer {
  background: #17485f;
  color: #b6cdda;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  .property-card, .property-card:hover { transition: none; transform: none; }
}
