:root {
    --primary: #2d4a22;
    --secondary: #8da05e;
    --accent: #d4a373;
    --light: #fefae0;
    --dark: #1a1a1a;
    --text: #333;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

p {
    font-family: 'Lato', sans-serif;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

/* Navigation */
nav {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

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

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

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

/* Mobile Menu Toggle (Hidden by default) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1558904541-efa8c1965f1e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 1rem;
    padding: 0 10px;
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
section {
    padding: clamp(50px, 10vw, 100px) 0;
}

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

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
}

.btn:hover {
    background: var(--secondary);
}

/* Flex Layouts for Content */
.flex-row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.flex-row > div {
    flex: 1;
    min-width: 300px;
}

.flex-reverse {
    flex-direction: row-reverse;
}

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

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links {
        gap: 15px;
    }
    .nav-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real site, you'd add a mobile menu here */
    }
    .menu-toggle {
        display: flex;
    }
    .flex-row {
        gap: 30px;
    }
    .flex-row > div {
        min-width: 100%;
    }
    section {
        padding: 60px 0;
    }
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }
    .card {
        padding: 20px;
    }
    .footer-grid {
        text-align: center;
    }
}
