/* --- Soft Nature Variables --- */
:root {
    --bg-cream: #fdfcf5;       /* Warm, paper-like background */
    --bg-white: #ffffff;
    --primary-green: #556b2f;  /* Dark Olive Green - Premium & Natural */
    --accent-sage: #8fbc8f;    /* Soft Sage - Calming accent */
    --text-charcoal: #2f2f2f;  /* Softer than black */
    --text-muted: #666666;
    --border-color: #e0e0e0;
    
    --font-heading: 'Playfair Display', serif; /* Elegant & Classic */
    --font-body: 'Lato', sans-serif;           /* Clean & Legible */
    
    --shadow-soft: 0 10px 30px rgba(85, 107, 47, 0.1);
    --radius: 8px;
    --container-width: 1200px;
}

/* --- Import Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* --- Reset & Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-cream);
    color: var(--text-charcoal);
    font-family: var(--font-body);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3 { 
    font-family: var(--font-heading); 
    color: var(--primary-green); 
    font-weight: 600; 
    line-height: 1.3;
    margin-bottom: 1rem;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-weight: 300; }

/* --- Layout --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-white { background-color: var(--bg-white); }

/* --- Navigation --- */
header {
    background-color: var(--bg-cream);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(85, 107, 47, 0.1);
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-green);
    letter-spacing: 1px;
}

.nav-links { display: flex; gap: 40px; }
.nav-links a { 
    font-size: 0.95rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--text-charcoal);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-green); font-weight: 600; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-green);
    color: white;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 50px; /* Organic roundness */
    transition: background 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover { background-color: var(--accent-sage); transform: translateY(-2px); color: var(--primary-green); }

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;
    filter: brightness(0.9);
}
.hero-content {
    background: rgba(253, 252, 245, 0.9); /* Semi-transparent Cream */
    padding: 60px;
    max-width: 600px;
    margin-left: 10%; /* Asymmetric layout */
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(5px);
}

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

/* --- Cards (Cars & Reviews) --- */
.nature-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(85, 107, 47, 0.1);
}
.nature-card:hover { transform: translateY(-5px); }
.card-body { padding: 30px; }
.price { color: var(--primary-green); font-family: var(--font-heading); font-size: 1.5rem; font-style: italic; }

.icon-leaf {
    width: 40px; height: 40px; fill: var(--accent-sage); margin-bottom: 20px;
}

/* --- Forms --- */
input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #dcdcdc;
    background-color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
}
input:focus, textarea:focus { border-color: var(--primary-green); outline: none; }

/* --- Footer --- */
footer {
    background-color: var(--primary-green);
    color: var(--bg-cream);
    padding: 60px 0 30px;
    margin-top: auto;
}
footer a { color: var(--accent-sage); }
footer a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-heading { color: white; font-family: var(--font-heading); margin-bottom: 20px; font-size: 1.2rem; }

/* --- Mobile Menu --- */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 2px; background-color: var(--primary-green); margin: 6px; }

/* --- Responsive --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content { margin: 0 20px; width: auto; padding: 30px; }
    
    .nav-links {
        position: absolute; top: 70px; right: 0;
        height: 100vh; width: 70%;
        background: var(--bg-cream);
        flex-direction: column; align-items: center; justify-content: center;
        transform: translateX(100%); transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    }
    .nav-links.active { transform: translateX(0); }
    .burger { display: block; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
}