/*
Theme Name: Neighbourhood Landscaping
Theme URI: https://neighbourhoodlandscaping.ca
Description: Custom theme for Neighbourhood Landscaping - "Modern Urban" design.
Author: Google Deepmind
Version: 1.2
*/

/* --- VARIABLES --- */
:root {
    /* Brand Colors */
    --brand-green: #1a2f23;
    /* Dark Green - Masthead/Footer/Text */
    --brand-orange: #e67e22;
    /* Vibrant Orange - Buttons/Highlights */
    --brand-light: #f4f7f6;
    /* Soft Grey-Green implementation */

    /* UI Colors */
    --text-main: #343a40;
    --text-muted: #6c757d;
    --white: #ffffff;

    /* Accents & Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(26, 47, 35, 0.95) 0%, rgba(26, 47, 35, 0.8) 100%);
    --gradient-orange: linear-gradient(135deg, #e67e22 0%, #d35400 100%);

    /* Typography */
    --font-heading: 'Jost', sans-serif;
    /* Premium Feel */
    --font-body: 'Jost', sans-serif;
    /* Modern Clean */

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    --radius: 8px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

p {
    margin-bottom: 1.25rem;
    /* Ensure distinct visual break between paragraphs */
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--brand-green);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

a {
    color: var(--brand-orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #d35400;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.bg-light {
    background-color: var(--brand-light);
}

.text-center {
    text-align: center;
}

/* --- COMPONENTS --- */

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    /* Pill shape for modern look */
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--brand-green);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #112018;
    /* Darker green */
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--brand-green);
}

/* --- LAYOUT --- */

/* Navbar */
.navbar {
    background-color: var(--brand-green);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    /* width: auto; */
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--brand-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--brand-orange);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links .current-menu-item>a::after,
.nav-links .current_page_item>a::after,
.nav-links .current-menu-ancestor>a::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    min-height: 550px;
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 47, 35, 0.5) 0%, rgba(26, 47, 35, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    /* Added contrast */
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    /* Increased opacity from 0.9 */
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Added contrast */
}

.hero-btns {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header .underline {
    width: 60px;
    height: 3px;
    background: var(--brand-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.underline-left {
    width: 60px;
    height: 3px;
    background: var(--brand-orange);
    margin: 15px 0 30px;
}

/* Features (Why Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: var(--brand-orange);
    color: white;
}

/* Services Grid - Flexbox for Centered Orphan */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 350px;
    /* Fixed width for flex layout */
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-img {
    height: 220px;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.service-content ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.service-content ul li i {
    color: var(--brand-orange);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    box-shadow: 20px 20px 0px rgba(26, 47, 35, 0.1);
    /* Stylized shadow offset */
    transition: var(--transition);
}

.about-img:hover {
    box-shadow: 10px 10px 0px rgba(230, 126, 34, 0.2);
    /* Interactive movement */
    transform: translate(5px, 5px);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-card .stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 700;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-author::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--brand-orange);
}

/* Footer */
.footer {
    background: var(--brand-green);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 30px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--brand-orange);
    margin-top: 10px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer p {
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    display: flex;
    /* alignment */
    align-items: center;
    gap: 0;
}

.footer ul li a:hover {
    color: white;
    /* Removed padding-left to prevent shifting */
}

/* Removed ::before arrow styles as per user feedback */
.footer ul li a::before {
    display: none;
}

/* Specific Contact Icons */
.footer-col .fa-map-marker-alt,
.footer-col .fa-phone,
.footer-col .fa-envelope {
    color: var(--brand-orange);
    width: 25px;
    /* Slight increase for alignment */
    text-align: center;
    margin-right: 0;
    /* Handled by gap */
    margin-top: 5px;
    /* Align with first line of text */
}

/* Specific styling for Contact List to fix alignment */
.footer-col:last-child ul li {
    display: flex;
    align-items: flex-start;
    /* Top align for address */
    gap: 15px;
    margin-bottom: 20px;
}

.footer-col:last-child ul li i {
    flex-shrink: 0;
    /* Prevent icon squishing */
}

.social-links {
    display: flex;
    gap: 15px;
    /* Increased gap */
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: white;
}

.social-links a:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- ANIMATIONS --- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card,
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    /* Using base transition but opacity handled by class */
}

.feature-card.is-visible,
.service-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack immediately on tablet */
        gap: 30px;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile for now */
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn+.nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-green);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Hero scaling for tablets ~1024px */
    .hero {
        height: auto;
        min-height: 480px;
        padding: 80px 0 40px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 10px !important;
    }

    .trust-badges span {
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        margin: 10px auto 0;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer p {
        margin: 0 auto 25px;
    }

    .social-links {
        justify-content: center;
    }

    .footer ul li a {
        justify-content: center;
    }
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background-color: var(--brand-light);
}

.cta-banner h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

/* --- MOBILE FIXES --- */
@media (max-width: 992px) {
    .mobile-hidden {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 30px 0;
        /* Tighter on mobile */
    }

    .hero h1 {
        font-size: 2.2rem;
        /* Scaled down from 2.8rem */
        line-height: 1.1;
    }

    .hero p {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .footer {
        padding: 40px 0 20px;
    }
}

/* --- CONTACT PAGE STYLES --- */
.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-area {
    flex: 1;
    min-width: 300px;
}

.form-container {
    background: #f9f9f9;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid #eee;
}

.contact-info-area {
    flex: 0 0 350px;
    width: 350px;
    /* Explicit width for desktop stability */
}

.info-box {
    margin-bottom: 30px;
}

.info-box h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Consistent gap */
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-box h4 i {
    color: var(--brand-orange);
    width: 20px;
    text-align: center;
}

/* JOBBER RESPONSIVE FIX */
.jobber-embed-wrapper,
.jobber-embed-wrapper iframe,
.jobber-form {
    width: 100% !important;
    max-width: 100% !important;
    border: none;
    overflow: hidden;
    /* Hide scrollbars if any */
}

/* MOBILE CONTACT ADJUSTMENTS */
@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-area {
        width: 100%;
        flex: none;
    }

    .contact-form-area {
        min-width: auto;
        width: 100%;
    }

    .form-container {
        padding: 25px;
    }

    .container {
        padding: 0 30px;
    }
}


/* Increase mobile container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
        /* Slightly looser than 20px */
    }
}


/* MOBILE DEEP DIVE FIXES */

/* 1. More Breathing Room on Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 35px;
        /* Significantly increased from 20/25px */
    }
}

/* 2. Fix Footer Contact Alignment on Mobile */
@media (max-width: 576px) {
    .footer-col:last-child ul li {
        justify-content: center;
        /* Center the flex items */
        text-align: center;
    }

    /* Optional: Stack icon above text on very small screens if needed, 
       but centering should be enough for now. */
}

/* 3. Ensure Map is Responsive (Backup) */
.map-box iframe {
    width: 100% !important;
    max-width: 100% !important;
}


/* --- FINAL VISUAL & MOBILE FIXES --- */

/* 1. Jobber / Contact Form Small Mobile Fix */
@media (max-width: 480px) {
    .contact-form-area {
        min-width: auto !important;
        /* Allow shrinking below 300px */
        width: 100%;
    }

    .form-container {
        padding: 15px;
        /* Maximize internal space */
    }

    .jobber-embed-wrapper {
        width: 100% !important;
        overflow-x: hidden;
    }
}

/* 2. Footer Icons: Stacked Above Text */
/* Applying globally or just mobile? User said "also on the footer", implying general pref. 
   Let's do it generally for the contact column to make it distinct. */
.footer-col:last-child ul li {
    flex-direction: column;
    align-items: flex-start;
    /* Default left align */
    text-align: left;
    gap: 8px;
}

/* On Mobile, center them */
@media (max-width: 576px) {
    .footer-col:last-child ul li {
        align-items: center;
        text-align: center;
    }
}


/* MOBILE MENU FIX */
/* The previous selector .mobile-menu-btn + .nav-links was incorrect due to DOM order.
   The JS adds .active to .nav-links directly. */
@media (max-width: 992px) {
    .nav-links.active {
        display: flex !important;
        /* Override display: none */
        flex-direction: column;
        position: absolute;
        top: 100%;
        /* Below header */
        left: 0;
        right: 0;
        background: var(--brand-green);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        text-align: center;
    }

    .nav-links.active li {
        width: 100%;
        margin: 10px 0;
    }

    .nav-links.active li a {
        display: block;
        padding: 10px;
    }
}

/* FORCE CACHE RESET Wed Feb  4 17:50:28 EST 2026 */

/* Mobile hero: maintain auto height, keep original overlay */
@media (max-width: 768px) {
    .hero {
        min-height: 450px;
        padding: 80px 0 40px;
    }
}


/* DESKTOP LAYOUT REFINEMENTS */
@media (min-width: 992px) {
    .hero-btns {
        flex-direction: row !important;
        justify-content: flex-start;
        gap: 20px;
    }
}


/* REFINED BUTTONS */
@media (min-width: 992px) {
    .btn {
        padding: 12px 32px;
        /* Nicer, larger sizing */
        font-size: 1rem;
    }
}

/* --- SITE UPDATES --- */

/* Services Page - Bullet Points */
.service-bullet {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 4px;
    /* Optical alignment with text */
    /* Ensure it respects the parent color if possible, or is explicitly styled */
}

/* Services Page - Mobile Stacking Fix */
@media (max-width: 768px) {
    .service-row {
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: 50px !important;
    }

    .service-visual {
        width: 100% !important;
        height: 220px !important;
        flex: none !important;
    }

    .service-info {
        padding: 0;
    }
}

/* Contact Page sidebar updates */
.lets-get-started-box {
    background-color: var(--brand-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.check-list li {
    margin-bottom: 12px;
}

/* Contact Page - Structured List Styles */
.check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url('assets/images/symbol.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Remove manual icon if present to avoid duplication */
.check-list li i {
    display: none;
}

/* Blog Index Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    display: block;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    height: 200px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.blog-card .post-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 12px;
}

.blog-card .post-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card .post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card:hover .post-title a {
    color: var(--brand-green);
}

.blog-card .post-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card .btn-text {
    color: var(--brand-green);
    font-weight: 600;
    text-decoration: none;
}

/* Pagination */
.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
}

/* Single Post Styles */
.single-post-header {
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.single-post-content p {
    margin-bottom: 1.5em;
}

.single-post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.single-post-content li {
    margin-bottom: 10px;
}

.single-post-content blockquote {
    border-left: 4px solid var(--brand-green);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    background: #f9f9f9;
    padding: 20px;
}

.post-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.post-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.post-navigation a:hover {
    color: var(--brand-green);
}