:root {
    --primary-color: #1e4d2b;
    /* Deep Forest Green */
    --secondary-color: #f8f5f2;
    /* Off White / Cream */
    --accent-color: #c5a059;
    /* Gold */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--white);
}

.cta-button.primary:hover {
    background: #b08d4b;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    margin-left: 1rem;
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.cta-button.small {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    background: var(--primary-color);
    color: var(--white);
}

.cta-button.small:hover {
    background: #153820;
}

.link-button {
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    display: inline-block;
    margin-top: 1rem;
}

.link-button:hover {
    border-bottom-color: var(--accent-color);
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.site-title a {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: -0.5px;
}

.main-navigation ul {
    display: flex;
    gap: 2.5rem;
}

.main-navigation a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1rem;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Section Common */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
}

/* About Section */
.about-section {
    background: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image .image-placeholder {
    height: 500px;
    background: #e0e0e0;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    box-shadow: 20px 20px 0px rgba(197, 160, 89, 0.2);
    /* Offset accent shadow */
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Why Choose Us */
.why-choose-us-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Listings Section */
.listings-section {
    background: var(--secondary-color);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.listing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.listing-image {
    position: relative;
    height: 280px;
}

.listing-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.listing-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.listing-details {
    padding: 2.5rem;
}

.listing-details h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.listing-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.listing-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.simple-contact-form input,
.simple-contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.simple-contact-form input::placeholder,
.simple-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.submit-button {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-button:hover {
    background: #b08d4b;
}

/* Footer */
.site-footer {
    background: #111;
    color: #999;
    padding: 5rem 0 2rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.site-info {
    border-top: 1px solid #222;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-image {
        order: -1;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1rem;
        cursor: pointer;
        color: var(--primary-color);
        font-weight: 600;
    }

    .main-navigation ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
        text-align: center;
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button.secondary {
        margin-left: 0;
    }
}

/* Header Logo */
.header-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Contact Form 7 Styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.wpcf7 input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #143d20;
}