
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  background-color: #f9f7f6;
  color: #333;
}

.site-header {
  background-color: #fff;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.site-header h1 {
  font-family: 'Playfair Display', serif;
  color: #d06cb3;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #555;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #ffe8f0, #e0f7fa);
}

.hero h2 {
  font-size: 2.5rem;
  color: #4a148c;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
}

.cta-button {
  background-color: #d06cb3;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #b64e9b;
}

.about {
  padding: 40px 20px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
  color: #4a148c;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.listing-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  padding-bottom: 20px;
}

.listing-card img {
  width: 100%;
  height: auto;
  display: block;
}

.listing-card h3 {
  color: #d06cb3;
  margin: 10px 0 5px;
}

.listing-card p {
  margin: 5px 0;
}

/* BLOG */
.blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.post-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.post-card img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  padding: 18px 18px 22px;
}

.post-meta {
  font-size: 0.85rem;
  color: #6b4a8c; /* muted plum */
  opacity: 0.8;
}

.post-content h3 {
  margin: 8px 0 8px;
  color: #4a148c;
  font-size: 1.2rem;
}

.post-content p {
  margin: 0 0 10px;
  color: #555;
}

.text-link {
  text-decoration: none;
  font-weight: 600;
  color: #d06cb3; /* accent pink-lavender */
}

.text-link:hover {
  text-decoration: underline;
}

/* REVIEWS */
.review-links {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px 10px;
  text-align: center;
}

.review-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
}

.outline-button {
  display: inline-block;
  padding: 10px 16px;
  border: 2px solid #d06cb3;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #d06cb3;
  transition: transform .15s ease, background-color .2s ease;
}

.outline-button:hover { transform: translateY(-2px); background-color: rgba(208,108,179,.1); }

.review-note { color: #555; font-size: .95rem; }

.review-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 30px 20px 50px;
}

.review-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-form label { font-weight: 700; color: #4a148c; }

.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
}

.rating-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.rating-fieldset legend {
  font-weight: 700;
  color: #4a148c;
  margin-bottom: 6px;
}

.stars {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
}

.stars input {
  display: none;
}

.stars label {
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: #ccc;
  transition: color .2s ease, transform .1s ease;
}

.stars label:hover,
.stars label:hover ~ label { color: #f6b6de; }

.stars input:checked ~ label { color: #d06cb3; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
}

/* BLOG POSTS */
.post-hero {
  text-align: center;
  padding: 50px 20px 30px;
  background: linear-gradient(to right, #ffe8f0, #e0f7fa);
}

.post-hero h2 {
  margin: 0 0 6px;
  color: #4a148c;
}

.post-meta {
  color: #6b4a8c;
  font-size: 0.95rem;
  opacity: 0.9;
}

.post {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px 40px;
}

.post .lead {
  font-size: 1.1rem;
  color: #444;
}

.post h3 {
  margin-top: 24px;
  color: #4a148c;
}

.post p, .post ul, .post ol {
  color: #333;
  line-height: 1.7;
}

.post ul, .post ol {
  padding-left: 20px;
}

.callout {
  background: #fff;
  border: 1px dashed #d06cb3;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 18px 0;
}

.back-link {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  font-weight: 600;
  color: #d06cb3;
}

.back-link:hover { text-decoration: underline; }

.cta-banner {
  text-align: center;
  padding: 30px 20px 50px;
  background-color: #fff;
  border-top: 1px solid #eee;
}
/* LISTING DETAIL PAGES */
.property-hero {
  text-align: center;
  padding: 50px 20px 30px;
  background: linear-gradient(to right, #ffe8f0, #e0f7fa);
}
.property-hero h2 { margin: 0 0 6px; color: #4a148c; }
.property-hero .sub { color: #6b4a8c; font-weight: 600; }
.property-hero .price { font-size: 1.4rem; font-weight: 800; color: #d06cb3; }

.property {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.gallery img { width: 100%; height: auto; display: block; border-radius: 12px; }
.thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 12px; }
.thumbs img { width: 100%; height: auto; border-radius: 10px; }

.property-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .property-grid { grid-template-columns: 1fr; }
}

.details h3 { color: #4a148c; margin-top: 20px; }
.features { list-style: disc; padding-left: 20px; color: #333; line-height: 1.7; }

.facts-card {
  position: sticky;
  top: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px 18px 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.facts-card h4 { margin-top: 0; color: #4a148c; }
.facts-card ul { list-style: none; padding: 0; margin: 0 0 12px; }
.facts-card li { margin: 6px 0; }
.facts-card .disclaimer { font-size: .85rem; color: #666; margin-top: 8px; }
/* Prevent entire page from becoming a grid if body has 'listings' */
body.listings { display: block !important; }

/* New grid class for the cards */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
/* ===== Layout Safety & Listings Fix Pack ===== */

/* 1) Global safety: prevent horizontal scroll */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* 2) Nav can wrap on small screens */
nav ul { flex-wrap: wrap; }

/* 3) Standard content container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 4) Listings grid (new class) */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

/* 5) If an old rule set '.listings' to be a grid, neutralize it on body */
body.listings { display: block !important; grid-template-columns: none !important; }
/* ===== ABOUT & SERVICES ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.about-photo img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 6px 18px rgba(0,0,0,.06); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0 10px;
}
.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.service-card h4 { margin: 0 0 8px; color: #4a148c; }

.process { margin: 30px 0; }
.process-steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.process-steps li { margin: 10px 0; padding-left: 10px; }
.values { margin: 30px 0; }
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: rgba(208,108,179,.1); color: #4a148c; padding: 8px 12px; border-radius: 999px; font-weight: 600; }

.cta-center { text-align: center; margin: 30px 0 60px; }

/* ===== RECENT POSTS STRIP (HOME) ===== */
.recent-posts { background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 20px 0 30px; }
.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 10px 0 4px;
}
.recent-card h4 { margin: 0 0 4px; color: #4a148c; font-size: 1.05rem; }
.recent-card a { text-decoration: none; }
.recent-card a:hover { text-decoration: underline; }
.recent-cta { text-align: right; margin-top: 8px; }
/* ===== PRIVACY & LEGAL ===== */
.privacy .privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 24px;
  font-size: 0.95rem;
}
.privacy-table th, .privacy-table td {
  border: 1px solid #eee;
  padding: 10px;
  vertical-align: top;
}
.privacy-table th { background: #faf7fb; color: #4a148c; text-align: left; }
footer .legal {
  font-size: 0.85rem;
  color: #666;
}
footer .legal a { color: inherit; text-decoration: underline; }


