:root {
    /* Logo Extracted Palette */
    --bg-color: #F2E8D5;         /* Warm Beige Background */
    --paper-texture: #E6DAC0;    /* Darker Beige for contrast */
    --forest-green: #3A4B24;     /* Dark Olive from Mountains */
    --meadow-green: #6F8634;     /* Lighter Moss Green */
    --sunset-orange: #D47F35;    /* Pumpkin Orange from Produce */
    --basket-gold: #C68E3F;      /* Golden Brown */
    --bark-brown: #2D1E12;       /* Darkest Brown for Text */
    --soft-white: #ffffff;
    
    /* Ghibli Sky - Adjusted to blend with beige */
    --sky-gradient: linear-gradient(180deg, #BDE0F5 0%, #F2E8D5 100%);
    
    --primary: var(--forest-green);
    --secondary: var(--meadow-green);
    --accent: var(--sunset-orange);
    --text-main: var(--bark-brown);
    
    --shadow-soft: 0 10px 40px rgba(45, 30, 18, 0.08);
    --shadow-hover: 0 15px 45px rgba(45, 30, 18, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--bg-color);
    overflow-x: hidden;
    /* Subtle vintage paper grain texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 3.8rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); text-align: center; margin-bottom: 2rem; position: relative; display: inline-block; }

/* Decorative underline for titles */
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 10px auto 0;
    opacity: 0.8;
}

p { margin-bottom: 1.2rem; font-size: 1.1rem; }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* Whimsical Button */
.btn {
    display: inline-block;
    background-color: var(--meadow-green);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(58, 75, 36, 0.3);
    border: 2px solid transparent;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: var(--accent);
    box-shadow: 0 8px 25px rgba(212, 127, 53, 0.4);
}

/* SVG Dividers */
.divider-shape {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.divider-top { bottom: 100%; }
.divider-bottom { top: 100%; transform: rotate(180deg); }

.divider-shape svg {
    display: block;
    width: calc(130% + 1.3px);
    height: 60px;
}

@media (min-width: 768px) {
    .divider-shape svg { height: 120px; }
}

.fill-bg { fill: var(--bg-color); }
.fill-paper { fill: var(--paper-texture); }

/* Header Styles */
header {
    background-color: rgba(242, 229, 213, 0.9);
    backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 30, 18, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--forest-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo > span > span {
    color: var(--accent);
}

.logo img {
    height: 65px;
    width: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

nav ul { display: flex; list-style: none; gap: 30px; }
nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
    position: relative;
}

nav ul li a:hover, nav ul li a.active { color: var(--accent); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--forest-green);
    cursor: pointer;
}

/* Hero Banner */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--sky-gradient);
    background-image: url('images/mount.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding-top: 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sky-gradient);
    opacity: 0.6;
    z-index: 0;
}

/* Clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
    animation: float 60s infinite linear;
    z-index: 1;
}
.cloud::after, .cloud::before { content: ''; position: absolute; background: inherit; border-radius: 50%; }
.c1 { width: 120px; height: 50px; top: 15%; left: 10%; animation-duration: 45s; }
.c1::after { width: 50px; height: 50px; top: -25px; left: 20px; }
.c1::before { width: 60px; height: 60px; top: -35px; right: 20px; }
.c2 { width: 180px; height: 70px; top: 35%; left: 30%; animation-duration: 65s; animation-delay: 5s; opacity: 0.8; }
.c2::after { width: 80px; height: 80px; top: -45px; left: 30px; }
.c2::before { width: 90px; height: 90px; top: -50px; right: 30px; }
.c3 { width: 100px; height: 40px; top: 60%; left: 50%; animation-duration: 35s; animation-delay: 2s; opacity: 0.7; }
.c3::after { width: 40px; height: 40px; top: -20px; left: 15px; }
.c4 { width: 140px; height: 55px; top: 25%; left: 70%; animation-duration: 50s; animation-delay: 3s; opacity: 0.75; }
.c4::after { width: 55px; height: 55px; top: -28px; left: 25px; }
.c4::before { width: 65px; height: 65px; top: -38px; right: 25px; }
.c5 { width: 90px; height: 35px; top: 75%; left: 20%; animation-duration: 40s; animation-delay: 1s; opacity: 0.65; }
.c5::after { width: 35px; height: 35px; top: -18px; left: 12px; }
.c5::before { width: 45px; height: 45px; top: -25px; right: 15px; }

@keyframes float { from { transform: translateX(0); } to { transform: translateX(110vw); } }

.hero-content {
    text-align: center;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--forest-green);
    text-shadow: 0 2px 0 rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

/* Floating leaves */
.leaves-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: hidden; }
.leaf { position: absolute; width: 15px; height: 15px; background-color: var(--meadow-green); border-radius: 0 100%; opacity: 0.7; animation: falling 10s linear infinite; }
@keyframes falling { 0% { transform: translate(0, -10%) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 100% { transform: translate(100px, 110vh) rotate(360deg); opacity: 0; } }

/* Generic Section */
section { padding: 100px 0; position: relative; }

/* Treasures of the Forest (Product Showcase) - 2x2 Layout */
.product-showcase { background-color: var(--bg-color); }

.showcase-grid {
    display: grid;
    /* Force 2 columns on ALL screen sizes as requested */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-item {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.showcase-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--meadow-green); }
.showcase-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }
.showcase-item h4 { font-size: 1.2rem; text-align: center; color: var(--forest-green); }

/* About Section - Gentle Process */
.about { background-color: var(--paper-texture); }

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    justify-items: center;
}

.step { text-align: center; padding: 0 15px; max-width: 300px; }

/* Increased circle size as requested */
.step-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 0 0 5px var(--meadow-green), var(--shadow-soft);
    transition: transform 0.5s ease;
}

.step:hover .step-image { transform: scale(1.05) rotate(3deg); }
.step-image img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery Section - Moments from the Mountains */
.gallery-section {
    background-color: var(--bg-color);
    padding-bottom: 150px;
}

/* 3x2 Layout Logic: Centered bottom row using Flexbox */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.gallery-item {
    background: white;
    padding: 12px 12px 40px 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    cursor: pointer;
    width: calc(33.333% - 20px); /* 3 items per row on desktop */
    position: relative;
}

.gallery-item:hover { transform: scale(1.05); z-index: 10; box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; filter: contrast(1.05) sepia(10%); }
.gallery-caption {
    font-family: 'Lora', serif;
    text-align: center;
    color: #666;
    margin-top: 10px;
    font-size: 0.95rem;
    font-style: italic;
}

/* Why Choose Us */
.features-section { background: linear-gradient(180deg, var(--paper-texture) 0%, #e8e4d9 100%); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.6);
    transition: transform 0.3s;
}
.feature-item:hover { transform: translateY(-5px); background: white; border-color: var(--accent); }
.feature-icon {
    font-size: 2.5rem;
    color: var(--meadow-green);
    margin-bottom: 20px;
    display: inline-block;
    background: var(--bg-color);
    width: 70px; height: 70px; line-height: 70px; border-radius: 50%;
}

/* Interest Form */
.interest-form-section {
    background-color: var(--forest-green);
    position: relative;
}

.interest-form {
    max-width: 600px;
    margin: auto;
    padding: 50px;
    background: #fff;
    color: var(--text-main);
    border-radius: 5px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    background-image: repeating-linear-gradient(white 0px, white 24px, #e1e8ed 25px);
}

/* Envelope Stripes */
.interest-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 10px;
    background: repeating-linear-gradient(45deg, var(--sunset-orange), var(--sunset-orange) 10px, white 10px, white 20px, var(--forest-green) 20px, var(--forest-green) 30px, white 30px, white 40px);
}

.interest-form h2 { margin-bottom: 30px; color: var(--forest-green); }
.interest-form input, .interest-form select, .interest-form textarea {
    width: 100%; padding: 12px; margin-bottom: 20px;
    border: none; border-bottom: 2px solid #ddd; background: transparent;
    font-family: 'Quicksand', sans-serif; font-size: 1rem; transition: 0.3s;
}
.interest-form input:focus, .interest-form select:focus, .interest-form textarea:focus { outline: none; border-bottom-color: var(--accent); }

/* Footer */
footer { background-color: var(--bark-brown); color: #dcdcdc; padding: 80px 0 30px; position: relative; }
.footer-logo { font-family: 'Lora', serif; font-size: 2rem; color: var(--bg-color); margin-bottom: 15px; }
.footer-logo span { color: var(--accent); }
.social-links a { background: rgba(255,255,255,0.1); color: white; transition: 0.3s; }
.social-links a:hover { background: var(--accent); transform: translateY(-5px); }

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    nav {
        position: fixed; top: 0; left: -100%; width: 85%; height: 100vh;
        background: var(--bg-color); padding: 80px 30px; transition: 0.4s;
        z-index: 999; box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }
    nav.active { left: 0; }
    nav ul { flex-direction: column; }
    .hero {
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
    }
    .hero h1 { font-size: 2.2rem; }
    
    /* Responsive Grid Logic */
    /* Product Showcase remains 2x2 */
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
    .showcase-item img { height: 150px; }
    .showcase-item h4 { font-size: 1rem; }

    /* Gallery Grid for Mobile (2 columns) */
    .gallery-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .gallery-item { width: 100%; padding: 8px 8px 30px 8px; }
    .gallery-item img { height: 160px; }
    
    /* Center the last item if odd number in grid on mobile */
    .gallery-item:last-child {
        grid-column: span 2; 
        width: 50%;
        justify-self: center;
    }

    /* Step circles slightly smaller on mobile to fit */
    .step-image { width: 180px; height: 180px; }
}