/* Basic Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Body Styles */
body {
    font-family: 'Montserrat', sans-serif; /* Friendly & Clean */
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Soft background */
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Elegant & Luxurious */
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.8em; }

/* Links */
a {
    color: #718096; /* Calming blue-gray */
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #a3b18a; /* Soft green accent */
}

.text-link {
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #a3b18a; /* Soft green accent */
    color: #fff;
}
.btn-primary:hover {
    background-color: #8b9c79;
}

.btn-secondary {
    background-color: #718096; /* Calming blue-gray */
    color: #fff;
}
.btn-secondary:hover {
    background-color: #5c6776;
}

.btn-hero {
    background-color: #a3b18a;
    color: #fff;
    padding: 15px 35px;
    font-size: 1.1em;
    border-radius: 30px; /* More modern, softer look */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}
.btn-hero:hover {
    background-color: #8b9c79;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Sections & Padding */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #fefefe;
}

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

.mt-5 {
    margin-top: 50px;
}

/* --- Header & Navigation --- */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: #718096;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #a3b18a;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:after {
    width: 100%;
    left: 0;
    background: #a3b18a;
}

.hamburger-menu {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu span {
    height: 3px;
    width: 25px;
    background: #718096;
    margin-bottom: 4px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none; /* Hidden by default */
    background-color: #fff;
    position: absolute;
    top: 75px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

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

.mobile-nav ul li a {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li:last-child a {
    border-bottom: none;
}

.mobile-nav ul li a.btn {
    margin-top: 10px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70vh; /* Make it tall enough */
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area without distortion */
    filter: brightness(0.7); /* Darken image slightly */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* --- Page Hero (for inner pages) --- */
.page-hero {
    background-color: #f0f4f7; /* Lighter background for inner hero */
    padding: 100px 0 60px;
    text-align: center;
    color: #4a4a4a;
    box-shadow: inset 0 -3px 5px rgba(0,0,0,0.02);
}

.page-hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Intro Section --- */
.intro-section h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 30px;
}

.intro-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

/* --- Services Overview (Home Page) --- */
.services-overview h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: #a3b18a; /* Accent color */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1em;
    color: #555;
}

/* --- Services List (Services Page) --- */
.service-detail-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    align-items: center;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse; /* Alternating image/text layout */
}

.service-detail-item h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
    color: #718096;
}

.service-detail-item .service-img {
    width: 45%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 2.5%; /* Space between image and text */
}

.service-detail-item p,
.service-detail-item ul {
    width: 45%;
    margin: 0 2.5%;
    font-size: 1.1em;
}

.service-detail-item ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
    color: #555;
}

.service-detail-item ul li {
    margin-bottom: 8px;
}


/* --- About Section --- */
.about-content .about-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-bio .profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 30px;
    border: 5px solid #a3b18a; /* Subtle border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-bio h2 {
    color: #718096;
    margin-bottom: 20px;
}

.about-bio h3 {
    color: #a3b18a;
    margin-top: 30px;
    margin-bottom: 10px;
}

.about-bio p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
    max-width: 700px;
    text-align: center;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden; /* Ensures images respect border-radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px; /* Space for caption */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.gallery-item h3 {
    color: #718096;
    margin-top: 20px;
    font-size: 1.4em;
}

.gallery-img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.image-caption {
    font-style: italic;
    color: #666;
    padding: 0 15px;
}

/* --- FAQ Section --- */
.faq-accordion .accordion-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-accordion .accordion-header {
    background-color: #f5f5f5;
    color: #4a4a4a;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-accordion .accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-accordion .accordion-header:hover {
    background-color: #e9e9e9;
}

.faq-accordion .accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #fff;
}

.faq-accordion .accordion-body p {
    padding-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

/* --- Blog Section --- */
.blog-list .blog-post-preview {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-post-preview .blog-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-post-preview h2 {
    font-size: 1.8em;
    padding: 20px 25px 10px;
    color: #718096;
}

.blog-post-preview p {
    padding: 0 25px 15px;
    line-height: 1.7;
    color: #555;
}

.blog-post-preview .post-meta {
    font-size: 0.9em;
    color: #888;
    padding: 0 25px 20px;
    display: block;
}

/* --- Call to Action Section --- */
.cta-section {
    background-color: #718096; /* Calming background */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Form Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info on left, form on right */
    gap: 50px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
    color: #718096;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-email a {
    font-weight: 600;
    color: #a3b18a;
    font-size: 1.1em;
}

.social-links-contact {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links-contact img {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links-contact img:hover {
    opacity: 1;
}

.contact-form-wrapper {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a4a4a;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a3b18a;
    box-shadow: 0 0 0 3px rgba(163, 177, 138, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- Footer --- */
.main-footer {
    background-color: #333;
    color: #eee;
    padding: 50px 0;
    font-size: 0.95em;
}

.main-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section p {
    line-height: 1.7;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
}
.footer-section ul li a:hover {
    color: #a3b18a;
}

.footer-section .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-section .social-links img {
    width: 28px;
    height: 28px;
    filter: invert(100%); /* Make icons white */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section .social-links img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    color: #bbb;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Hide main nav on smaller screens */
    }

    .hamburger-menu {
        display: flex; /* Show hamburger menu */
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .service-detail-item {
        flex-direction: column; /* Stack image and text vertically */
        text-align: center;
    }
    .service-detail-item:nth-child(even) {
        flex-direction: column; /* Keep stacked */
    }

    .service-detail-item .service-img,
    .service-detail-item p,
    .service-detail-item ul {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .service-detail-item ul {
        text-align: left;
        padding-left: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr; /* Stack contact info and form */
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.5em; }

    .section-padding {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .page-hero {
        padding: 80px 0 40px;
    }
    .page-hero h1 {
        font-size: 2.5em;
    }

    .service-grid {
        grid-template-columns: 1fr; /* Single column layout for services */
    }

    .blog-post-preview {
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.3em; }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }
    .footer-section ul {
        padding-left: 0;
    }
    .footer-section ul li {
        margin-bottom: 5px;
    }
    .footer-section ul li a {
        display: block;
        padding: 5px 0;
    }
    .social-links {
        justify-content: center;
    }
}
/* Add to css/style.css */

.site-logo {
    max-height: 150px; /* Adjust as needed */
    width: auto;
    display: block; /* Ensures it behaves nicely in layout */
}

/* Adjust logo size for smaller screens if necessary */
@media (max-width: 768px) {
    .site-logo {
        max-height: 40px; /* Smaller on mobile */
    }
}
