/*
Theme Name: Gardens by Cath
Theme URI: https://gardensbycath.co.uk
Author: Your Name
Author URI: https://gardensbycath.co.uk
Description: A clean, elegant, and responsive theme designed for 'Gardens by Cath', a landscape and garden design business. Inspired by the natural beauty of English gardens.
Version: 1.0
Text Domain: gardensbycath
Tags: custom-background, custom-logo, custom-menu, featured-images, portfolio, blog, one-column, responsive-layout
*/

/* --- General Styles --- */
body {
    font-family: 'Garamond', 'Times New Roman', serif;
    color: #4a4a4a;
    background-color: #fcfaf8; /* A very light, warm off-white */
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Header & Navigation --- */
.site-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .site-title a,
.custom-logo-link {
    text-decoration: none;
    color: #333;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 25px;
}

.main-navigation a {
    text-decoration: none;
    color: #505050;
    font-size: 1.1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: #8a795d; /* A soft, earthy brown */
    border-bottom: 2px solid #8a795d;
}


/* --- Main Content --- */
.site-main {
    padding: 40px 0;
}

h1, h2, h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

/* --- Homepage Specific Styles --- */

.page-container {
    padding: 40px 20px;
}

.home-section {
    margin-bottom: 80px;
    text-align: center;
}

.section-title {
    font-size: 2.2em;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-weight: 400;
}

/* --- Hero Section --- */
.hero-section {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25); /* Dark overlay for text readability */
}

.hero-content {
    position: relative; /* To appear above the overlay */
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.button-primary {
    background-color: #c5b59d; /* Earthy tan/brown from the design */
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #b3a185;
}

/* --- Approach Section --- */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.approach-item {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.approach-item.welcome-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.approach-item h3 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1.4em;
    font-weight: normal;
}

.icon-placeholder {
    text-align:center;
    /* In a real theme, you'd use an SVG or an icon font */
}


/* --- Highlights Section --- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.logo {
    max-height:100px;
}

/* --- Contact Section --- */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .section-title {
        font-size: 1.8em;
    }
    
    .approach-item.welcome-box {
        flex-direction: column;
        text-align: center;
    }
}