/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #3a3a3a;
    background: linear-gradient(180deg, #f8f9f5 0%, #e2e8e4 100%);
}

/* Color Palette */
:root {
    --moss-green: #3b5e3b;
    --mist-blue: #6b8299;
    --ivory: #f2efe6;
    --slate-gray: #5c6b73;
    --golden-haze: #d9a86c;
    --sunset-orange: #f7a072;
    --forest-gradient: linear-gradient(135deg, #3b5e3b, #6b8299);
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, #f2efe6, #e6e3d8);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: var(--ivory);
    padding: 0.8rem 0;
}

.navbar .container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.navbar h1 {
    font-size: 2rem;
    color: var(--moss-green);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--slate-gray);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--golden-haze);
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--moss-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(59, 94, 59, 0.5)), url('https://images.unsplash.com/photo-1508736793122-f14b790d0329?auto=format&fit=crop&w=1400');
    background-size: cover;
    background-position: center;
    color: var(--ivory);
    text-align: center;
    padding: 10rem 2rem 5rem;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--golden-haze), var(--sunset-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--golden-haze), var(--sunset-orange));
    color: var(--ivory);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn:hover {
    background: linear-gradient(135deg, var(--moss-green), var(--mist-blue));
    transform: translateY(-3px);
}

/* Main Content */
.container {
    max-width: 1280px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* Section Titles */
h2 {
    color: var(--moss-green);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--golden-haze);
    display: block;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

h3 {
    color: var(--slate-gray);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

/* Paragraph & Lists */
p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sunset-orange);
    font-size: 1.5rem;
}

/* Blog Posts */
.blog-post {
    background: linear-gradient(145deg, #f2efe6, #e6e3d8);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(145deg, #f2efe6, #d9e2d3);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 700px;
    margin: 3rem auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.contact-form label {
    font-weight: 600;
    color: var(--moss-green);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--mist-blue);
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--sunset-orange);
    outline: none;
    box-shadow: 0 0 8px rgba(247,160,114,0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--moss-green), var(--mist-blue));
    color: var(--ivory);
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
}

.footer a {
    color: var(--golden-haze);
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    color: var(--sunset-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--ivory);
        padding: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .navbar h1 {
        font-size: 1.6rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.6rem;
    }
}
