/* Base Reset & Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif; /* Changed to a warmer, classic font style */
    scroll-behavior: smooth;
}

body {
    color: #2c2520; /* Dark charcoal/wood color */
    line-height: 1.7;
    background-color: #faf7f2; /* Soft warm cream background */
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(44, 37, 32, 0.08);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2d5a27; /* Forest Green */
    font-style: italic;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #5c5146; /* Soft wood brown */
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5a27;
}

/* Sections Universal Styling */
section {
    padding: 7rem 2rem 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2d5a27;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #706253;
    max-width: 650px;
    margin-bottom: 3.5rem;
    font-style: italic;
}

/* Hero Section */
/* Hero Section Main Container */
#home {
    padding: 0; /* Remove padding to let elements stretch edges */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Stack items top to bottom */
    align-items: stretch;
    background: #faf7f2;
}

/* Top One-Third: Random Image Box */
.hero-image-top {
    height: 50.00vh; /* Exactly 1/3 of the viewport screen height */
    width: 100%;
    background-color: #2d5a27; /* Fallback forest green while image loads */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.15); /* Soft shadow transition to text */
}

/* Bottom Two-Thirds: Text Content Container */
.hero-text-bottom {
    flex: 1; /* Automatically takes up the remaining 2/3 space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(rgba(250, 247, 242, 0.9), rgba(240, 230, 214, 0.5));
    color: #2c2520;
}

#home h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    font-weight: normal;
    color: #2d5a27;
}

#home p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 750px;
    font-family: 'Segoe UI', sans-serif;
}


.btn {
    display: inline-block;
    background: #8c6239; /* Warm Oak Wood Brown */
    color: #ffffff;
    padding: 0.8rem 2.2rem;
    border-radius: 4px; /* More block-like, traditional craft feel */
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #6d4a27;
    transform: translateY(-2px);
}

/* Woodwork Section */
#woodwork {
    background: #ffffff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
}

.card {
    background: #faf7f2;
    padding: 3rem 2rem;
    border-radius: 4px;
    border-top: 4px solid #8c6239; /* Wood border accent */
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.card h3 {
    margin-bottom: 1.2rem;
    color: #8c6239;
    font-size: 1.5rem;
}

/* Foraging Section */
#foraging {
    background: #f0e6d6; /* Deeper rustic earth tone */
}

.forage-container {
    display: flex;
    gap: 3rem;
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.forage-item {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.forage-item strong {
    display: block;
    font-size: 1.3rem;
    color: #2d5a27;
    margin-bottom: 1rem;
}

/* About Section */
#about {
    background: #ffffff;
}

.about-content {
    max-width: 750px;
    font-size: 1.2rem;
    color: #4a4035;
    text-align: justify;
}

/* Contact Section */
#contact {
    background: #faf7f2;
}

form {
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1c7bd;
    background: #ffffff;
    font-size: 1rem;
    border-radius: 4px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #2d5a27;
}

form .btn {
    background: #2d5a27;
    border: none;
    cursor: pointer;
}

form .btn:hover {
    background: #1e3d1a;
}

/* Footer */
footer {
    background: #2c2520;
    color: #f0e6d6;
    text-align: center;
    padding: 2.5rem;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .forage-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    #home h1 {
        font-size: 2.4rem;
    }
    .section-title {
        font-size: 1.9rem;
    }
}
