/*
Theme Name: Bitwave Business Site 2025 Theme
Theme URI: https://www.bitwavedesign.com/
Description: A custom WordPress theme by Bitwave Design. (Blessed Events Redesign)
Version: 5.2.8
Author: Bitwave Design
Author URI: https://bitwavedesign.com/
Text Domain: bitwave-biz-2025

============================================
 TABLE OF CONTENTS
============================================
1. CSS Variables & Root
2. General Layout & Body
3. Header & Navigation
4. Hero Sections
5. Content & Gutenberg Blocks
6. Components (Buttons, Cards, etc.)
7. Section Layouts
8. Services Sections
9. About Us Section
10. Portfolio Sections
11. Testimonial Section
12. Blog Listing & Post Teasers
13. Single Blog Post
14. FAQ Section
15. Property Listings
16. Responsive Adjustments
17. Enhanced Post Navigation
============================================
*/

/* ============================================
   1. CSS Variables & Root
============================================ */
:root {
  /* Color Palette */
  --primary-bg: #585857;
  --primary-accent: #599538;
  --primary-accent-rgb: 227, 54, 63;
  --secondary-accent: #2a2a2a;
  --strong-accent: #ce6d2f;
  --light-accent: #FE711B;
  --dark-text: #2d2d2d;
  --light-text: #ffffff;
  --nav-scrolled: rgba(73,67,60,0.88);
  --header-bg: rgb(224, 217, 206);
  --footer-text: var(--primary-bg);
  --body-bg: var(--primary-bg);
  --light-section-bg: #f3eeea;
  --footer-cta-bg: var(--strong-accent);
  --footer-social-bg: var(--secondary-accent);
  --footer-social-icon-color: var(--primary-bg);
  --footer-social-icon-hover-color: var(--primary-accent);
  --footer-bg: #2a2a2a;
  --header-overlay-color-start: rgba(0, 0, 0, 0.65);
  --header-overlay-color-end: rgba(0, 0, 0, 0.3);
  --subpage-header-overlay-color-start: rgba(0, 0, 0, 0.853);
  --subpage-header-overlay-color-end: rgba(0, 0, 0, 0.116);

  /* Fonts */
  --font-primary: 'Catamaran', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-secondary: 'Catamaran', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Sizing, Borders, Shadows */
  --nav-gap: clamp(1rem, 2.5vw, 2rem);
  --nav-font-weight: 600;
  --border-radius: 8px;
  --container-max-width: 1200px;
  --content-max-width: 800px;
  --header-nav-height: 150px;
  --card-bg: #ffffff;
  --card-shadow: 0 5px 15px rgba(0,0,0,0.07);
  --card-hover-shadow: 0 8px 20px rgba(0,0,0,0.1);
  --input-border-color: #d1d1d1;
  --input-focus-border-color: var(--primary-accent);
  --social-icon-font-size: 1.6rem;
  --social-icon-spacing: 1.2rem;
}

/* ============================================
   2. General Layout & Body
============================================ */
html {
    scroll-behavior: smooth;
    font-size: 100%; 
}
body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  background-color: var(--body-bg);
  color: var(--dark-text);
  line-height: 1.75; 
  font-size: 1rem; 
  overflow-x: hidden;
  display: flex; 
  flex-direction: column; 
  min-height: 100vh; 
}
main.site-main { 
    flex-grow: 1; 
    padding-top: 0;
    padding-bottom: 0;
}
.container { 
    width: 90%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem; 
    padding-right: 1.5rem; 
}

/* ============================================
   3. Header & Navigation
============================================ */
.site-header {
  width: 100%;
  background-color: var(--header-bg); /* or your preferred background */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  min-height: var(--header-nav-height);
}

.site-logo {
  box-sizing: border-box;
  max-width: 33%;
}

.site-logo img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 345px;
  min-width: 240px;
}

/* Responsive Layout */
@media (max-width: 768px) {
    
    .site-logo {
      max-width: 65%;
    }

    .site-logo img {
      display: block;
      height: auto;
      width: 100%;
      max-width: 315px;
      min-width: 50%;
    }
}

/* ============================================
   4. Hero Sections
============================================ */
.hero-content-area {
  flex-grow: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  position: relative;
}
.homepage-hero .hero-content-area { 
    margin-top: calc(var(--header-nav-height) + 0.8rem); 
    padding: 1.6rem 1rem; 
}
.subpage-hero .hero-content-area,
.subpage-default-hero .hero-content-area {
    padding: clamp(2.4rem, 5.6vh, 4rem) 1rem clamp(2rem, 4.8vh, 3.2rem);
    margin-top: var(--header-nav-height); 
    width: 100%; 
    box-sizing: border-box; 
}

.hero-content-inner {
    max-width: 900px; 
    margin-left:auto;
    margin-right:auto;
    padding-top: clamp(4rem, 8vw, 8rem);
    padding-bottom: clamp(4rem, 8vw, 8rem);
} 
/* Larger hero padding only for homepage */
body.home .hero-content-inner {
  padding-top: clamp(5rem, 12vw, 12rem);
  padding-bottom: clamp(5rem, 12vw, 12rem);
}

.hero-content-area h1 { 
  font-family: var(--font-secondary); 
  font-size: clamp(2.1rem, 6vw, 3.4rem); 
  font-weight: 700; 
  margin-bottom: 1rem; 
  line-height: 1.2; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3); 
  color: var(--light-text); 
}
.hero-content-area p { 
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2.8vw, 1.4rem); 
  line-height: 1.7; 
  margin-bottom: 2rem; 
  max-width: 700px; 
  margin-left: auto; 
  margin-right: auto; 
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  color: var(--light-text); 
  font-weight: 300; 
}
.subpage-hero .hero-content-area h1,
.subpage-default-hero .hero-content-area h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); 
    margin-bottom: 0;
}
.subpage-hero .hero-content-area p, 
.subpage-hero .hero-content-area .cta-button.hero-cta,
.subpage-default-hero .hero-content-area p,
.subpage-default-hero .hero-content-area .cta-button.hero-cta { 
    display: none; 
}

/* ============================================
   5. Content & Gutenberg Blocks
============================================ */
.entry-content {
  max-width: 950px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  padding: 4rem 1.5rem 3rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.entry-content img {
  box-shadow: var(--image-shadow);
}

.entry-content .wp-block-image img {
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.entry-content h2,
.entry-content h3,
.entry-content h4.wp-block-heading {
  font-family: var(--font-secondary);
  color: var(--strong-accent);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.entry-content h4.wp-block-heading {
  font-size: 1.3rem;
}

.entry-content h6.wp-block-heading {
  font-size: 1.3rem;
  margin: 1.2rem 0 0.5rem 0;
  color: #b85c22 !important;
  font-weight: 700;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content strong {
  color: #3d3732;
  font-size: 1.1em;
}

.entry-content a {
  color: var(--link-accent);
  text-decoration: underline;
  font-weight: 500;
}

.entry-content a:hover {
  color: var(--strong-accent);
}


@media (max-width: 600px) {
  .entry-content {
    padding: 1.2rem 0.5rem;
  }
}

/* ============================================
   6. Components (Buttons, Cards, etc.
============================================ */
.cta-button { 
  background-color: var(--primary-accent); 
  color: var(--light-text) !important;
  padding: 0.8rem 1.8rem; 
  border-radius: var(--border-radius);
  font-weight: 700; 
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
  border: none; 
  text-shadow: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.cta-button:hover,
.cta-button:focus {
  background-color: var(--strong-accent); 
  color: var(--light-text) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(var(--primary-accent-rgb), 0.3);
}
.cta-button.cta-button--small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: auto; 
    align-self: center; 
}

/* ============================================
   7. Section Layouts
============================================ */
.section {
    padding: clamp(3.5rem, 8vw, 6rem) 0; 
    text-align: center;
}
.section.bg-light { background-color: var(--light-section-bg); }
.section h2 { 
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 5vw, 3rem); 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    color: var(--strong-accent); 
    line-height: 1.25;
}
.section .section-subheading { 
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    max-width: 45rem; 
    margin: 0 auto 3rem auto;
    line-height: 1.75;
    color: #585858; 
}

/* Reduce the bottom padding of the intro text section */
#intro-text.section {
  padding-bottom: 1.5rem;
}

/* ============================================
   8. Services Sections
============================================ */
.full-service-teaser-section {
  background-color: var(--light-section-bg);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.teaser-content {
  text-align: left;
}

.teaser-content .section-heading {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--strong-accent);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.teaser-content .section-subheading {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
  margin-bottom: 2rem;
  max-width: 95%;
}

.teaser-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .teaser-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .teaser-content {
    text-align: center;
  }

  .teaser-content .section-subheading {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .teaser-image img {
    margin-top: 2rem;
  }
}

.services-overview-section {
  background-color: var(--light-section-bg);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.services-overview-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  text-align: left;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
}

.service-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--strong-accent);
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card .cta-button--small {
  align-self: flex-start;
}

.service-detail-section {
  padding: clamp(3rem, 6vw, 5.5rem) 1.5rem;
  margin-bottom: 3rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
}

/* Alternate light background for visual variety */
.service-detail-section.bg-light {
  background-color: #fdf9f6;
}

/* Layout container for image and text */
.service-content-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.service-content-image-pair.reverse-layout {
  direction: rtl;
}
.service-content-image-pair.reverse-layout > * {
  direction: ltr;
}

/* Image container */
.service-image-content img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--image-shadow);
}

/* Text content */
.service-text-content h2 {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: var(--strong-accent);
  margin-bottom: 0.75rem;
}

.service-price-value {
  font-size: 1rem;
  font-weight: 600;
  color: #6c2b4f;
  margin-bottom: 0.5rem;
}

.section-subheading.text-left {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-text-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.service-text-content ul {
  list-style-position: inside; /* Align bullets with the text block */
  padding-left: 0;
  margin-left: 0;
}

.service-text-content ul li {
  list-style-type: disc;
  margin-bottom: 0.3rem;
  padding-left: 1rem;
  text-indent: -0.8rem;
  font-size: 1rem;
  color: #333;
}

/* Responsive stacking for mobile */
@media (max-width: 768px) {
  .service-content-image-pair {
    grid-template-columns: 1fr;
  }

  .service-content-image-pair.reverse-layout {
    direction: ltr;
  }

  .service-text-content {
    text-align: center;
  }

  .service-image-content {
    margin-top: 2rem;
  }
}

/* ============================================
   9. About Us Section
============================================ */
.about-hero-image {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.about-hero-image img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius);
  box-shadow: var(--image-shadow, 0 4px 10px rgba(0, 0, 0, 0.1));
}

/* ============================================
   10. Portfolio Sections
============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  margin-top: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

/* Optional: Caption Overlay on Hover */
.portfolio-item a::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: var(--font-primary);
}

.portfolio-item a:hover::after {
  opacity: 1;
}

/* Full-width container override for gallery */
.portfolio-teaser-section .portfolio-grid {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}



.portfolio-gallery-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background-color: #fff;
}

.portfolio-gallery-section h2 {
  text-align: center;
  font-size: 2rem;
  font-family: var(--font-secondary);
  color: var(--strong-accent);
  margin-bottom: 1rem;
}

.portfolio-gallery-section .section-subheading {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Responsive full-width gallery grid */
.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  max-width: 100%;
}

.portfolio-gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
}

.portfolio-gallery-grid .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-gallery-grid .gallery-item:hover img {
  transform: scale(1.03);
}

/* Optional: Caption on hover */
.portfolio-gallery-grid .gallery-item a::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: var(--font-primary);
}

.portfolio-gallery-grid .gallery-item a:hover::after {
  opacity: 1;
}

/* Add spacing below for visual balance */
.portfolio-gallery-section + .testimonial-section {
  margin-top: 3rem;
}

/* ============================================
   11. Testimonial Section
============================================ */
.testimonial-section {
  background-color: var(--light-section-bg);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-item {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  text-align: left;
  position: relative;
  font-family: var(--font-primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-stars {
  color: var(--strong-accent);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.testimonial-title {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--secondary-accent);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--strong-accent);
  font-weight: 600;
  text-align: right;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   12. Blog Listing & Post Teasers
============================================ */
.blog-listing-page .post-teasers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Individual Post Card */
.post-teaser {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-teaser:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

/* Thumbnail Image */
.post-teaser__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Block */
.post-teaser__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-teaser__title {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--strong-accent);
}

.post-teaser__meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

.post-teaser__excerpt p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}

.post-teaser__read-more {
  align-self: flex-start;
  margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blog-listing-page .post-teasers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-teaser__title {
    font-size: 1.2rem;
  }
}

/* ============================================
   13. Single Blog Post
============================================ */
.site-main .entry-header.single-entry-header {
  margin-bottom: 2rem;
  text-align: center;
}

.entry-content {
  max-width: 950px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  padding: 4rem 1.5rem 3rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  margin-top: 1.5rem;
}

/* === Post Meta (Single Post) === */
.entry-meta-simplified {
  font-size: 0.95rem;
  font-weight: 500;
  color: #777;
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-primary);
  line-height: 1.5;
  padding-top: 2rem;
}

.entry-meta-simplified .post-category {
  color: var(--strong-accent);
  font-weight: 600;
}

.entry-meta-simplified .meta-separator {
  margin: 0 0.5rem;
  color: #aaa;
}

.entry-meta-simplified .posted-on {
  color: #666;
}

/* Optional: add subtle tracking/letter spacing */
.entry-meta-simplified span {
  letter-spacing: 0.02em;
}

.entry-content .wp-block-image img {
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  margin-bottom: 1em;
  border-radius: var(--border-radius);
}

.entry-content h2,
.entry-content h3,
.entry-content h4.wp-block-heading {
  font-family: var(--font-secondary);
  color: var(--strong-accent);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.entry-content h4.wp-block-heading {
  font-size: 1.3rem;
}

.entry-content h6.wp-block-heading {
  font-size: 1.3rem;
  margin: 1.2rem 0 0.5rem 0;
  color: #b85c22 !important;
  font-weight: 700;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content strong {
  color: #3d3732;
  font-size: 1.1em;
}

.entry-content a {
  color: var(--link-accent);
  text-decoration: underline;
  font-weight: 500;
}

.entry-content a:hover {
  color: var(--strong-accent);
}

@media (max-width: 600px) {
  .entry-content {
    padding: 1.2rem 0.5rem;
  }
}

/* ============================================
   14. FAQ Section
============================================ */
.faq-section {
  background-color: var(--light-section-bg);
  padding: 4rem 1rem;
}

.faq-section .container {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.faq-section .section-heading {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 2rem;
}

.faq-section .faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--input-border-color);
  padding-bottom: 1.5rem;
}

.faq-section .faq-question {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: var(--nav-font-weight);
  color: var(--strong-accent);
  margin: 0 0 0.75rem;
}

.faq-section .faq-answer {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin: 0 0 0.5rem;
}

.faq-section .faq-answer a {
  color: var(--primary-accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-accent);
}

.faq-section .faq-answer a:hover {
  color: var(--strong-accent);
  border-bottom-color: var(--strong-accent);
}

.faq-section .cta-link {
  color: var(--primary-accent);
  font-weight: 600;
  text-decoration: none;
}

.faq-section .cta-link:hover {
  color: var(--strong-accent);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .faq-section .faq-item {
    display: flex;
    align-items: flex-start;
  }
  .faq-section .faq-question {
    flex: 0 0 30%;
    margin-right: 2%;
  }
  .faq-section .faq-answer {
    flex: 1;
  }
}

/* ============================================
   15. Property Listings
============================================ */
.property-card {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease;
  align-items: flex-start;
}
.property-card:hover {
  box-shadow: var(--card-hover-shadow);
}
.property-thumb {
  flex: 0 0 300px;
  max-width: 300px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.property-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.property-title {
  font-size: 1.9rem !important;
  font-family: var(--font-secondary);
  color: #111 !important;
  margin: 0.3rem 0 0.4rem !important;
  text-align: left;
}
.property-title a {
  color: #111 !important;
  text-decoration: none;
}
.property-excerpt {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  text-align: left;
}
.property-location-specs {
  color: rgb(83, 74, 68);
  margin-bottom: 0.1rem;
  text-align: left;
  font-weight: bold;
  font-size: .81rem;
}
.property-price {
  color: var(--strong-accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0.25rem 0;
}
.property-excerpt-body {
  color: #555;
  font-size: .82rem;
  line-height: 1.6;
}
.property-more-link {
  margin-top: 0.7rem;
  text-align: left;
}
.property-more-link a {
  color: var(--primary-accent);
  font-weight: 600;
  text-decoration: underline;
  font-size: .96rem;
  transition: color 0.2s;
}
.property-more-link a:hover {
  color: var(--strong-accent);
  text-decoration: none;
}
@media (max-width: 768px) {
  .property-card {
    flex-direction: column;
  }
  .property-thumb {
    max-width: 100%;
    flex-basis: 100%;
    min-height: 180px;
    height: 180px;
    position: relative;
  }
  .property-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/* --- Single Property Listing Enhancements --- */
.single-entry-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.entry-content {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem 2rem;
  margin-bottom: 2.5rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content p strong {
  color: #3d3732;
  font-size: 1.1em;
}

.entry-content h6.wp-block-heading {
  font-size: 1.3rem;
  margin: 1.2rem 0 0.5rem 0;
  color: #b85c22 !important;
  font-weight: 700;
}

@media (max-width: 600px) {
  .entry-content {
    padding: 1.2rem 0.5rem;
  }
}

/* ============================================
   16. Responsive Adjustments
============================================ */
@media (max-width: 600px) {
  .entry-content {
    padding: 1.2rem 0.5rem;
  }
}

/* ============================================
   17. Enhanced Post Navigation
============================================ */
.enhanced-post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0 1.5rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: none;
}

.enhanced-post-navigation .nav-links {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
}

.enhanced-post-navigation .nav-previous,
.enhanced-post-navigation .nav-next {
  flex: 1 1 0;
}

.enhanced-post-navigation a {
  color: var(--strong-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
  display: inline-block;
}

.enhanced-post-navigation a:hover {
  color: var(--primary-accent);
  text-decoration: underline;
}

.enhanced-post-navigation .nav-title {
  font-weight: 700;
  color: #222;
}

@media (max-width: 600px) {
  .enhanced-post-navigation .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  .enhanced-post-navigation {
    padding: 0.7rem 0;
  }
}

/* END OF FILE */

