/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5016;
    --light-green: #5a7c3e;
    --olive-green: #6b8e23;
    --cream: #f5f5dc;
    --light-cream: #fafaf5;
    --dark-text: #2c2c2c;
    --medium-text: #555;
    --border-color: #ddd;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-cream);
}

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

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: bold;
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--medium-text);
    font-style: italic;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: 500;
}

.nav a:hover {
    color: var(--olive-green);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background: rgba(45, 80, 22, 0.85);
    padding: 30px 50px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(45, 80, 22, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(45, 80, 22, 0.9);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: white;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-cream);
}

.products h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 2rem;
    color: var(--primary-green);
    padding: 20px 30px 10px;
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--medium-text);
    font-style: italic;
    padding: 0 30px 15px;
}

.product-card p {
    padding: 0 30px 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    padding: 0 30px 30px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--medium-text);
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--olive-green);
    font-weight: bold;
}

/* Story Section */
.story {
    padding: 80px 0;
    background-color: white;
}

.story h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.story blockquote {
    background-color: var(--cream);
    border-left: 5px solid var(--olive-green);
    padding: 30px 40px;
    margin: 0 0 50px 0;
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
}

.story blockquote cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: bold;
    color: var(--primary-green);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.story-item h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.story-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-text);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-cream);
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-map h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-info a {
    color: var(--olive-green);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.social-links a:hover {
    background-color: var(--light-green);
}

.map-note {
    font-style: italic;
    color: var(--medium-text);
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        height: 400px;
    }

    .slide-content {
        padding: 20px 30px;
        bottom: 60px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .about-content,
    .product-grid,
    .story-grid,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }

    .hero {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .about h2,
    .products h2,
    .story h2,
    .contact h2 {
        font-size: 2rem;
    }
}
