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

body {
    font-family: 'Trebuchet MS', Arial, sans-serif;
    line-height: 1.6;
    color: #2d5016;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Hand-drawn style animations */
@keyframes draw {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

/* Header */
.header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(45, 80, 22, 0.1);
    border-bottom: 3px solid #2d5016;
    border-style: dashed;
}

.navbar {
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2d5016;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    animation: wiggle 3s ease-in-out infinite;
}

.logo-text {
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2d5016;
    transform: skew(-12deg);
}

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

.nav-menu a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #2d5016;
    color: white;
    transform: rotate(-1deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d5016;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%);
    color: white;
    padding: 20px;
    z-index: 9999;
    border-top: 3px dashed white;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    border: 2px dashed transparent;
}

.btn-primary {
    background: #2d5016;
    color: white;
    border-color: #2d5016;
}

.btn-primary:hover {
    background: #4a7c25;
    transform: translateY(-2px) rotate(1deg);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

.btn-secondary {
    background: #8fbc8f;
    color: #2d5016;
    border-color: #8fbc8f;
}

.btn-secondary:hover {
    background: #7ba77b;
    transform: translateY(-2px) rotate(-1deg);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #2d5016;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f5e8 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%232d5016" opacity="0.1"/><circle cx="80" cy="60" r="1.5" fill="%232d5016" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%232d5016" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2d5016;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: #2d5016;
    transform: skew(-15deg);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a7c25;
    line-height: 1.6;
}

.hero-image svg {
    width: 100%;
    height: 300px;
    animation: float 4s ease-in-out infinite;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f8e8 100%);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d5016;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) skew(-10deg);
    width: 80px;
    height: 4px;
    background: #8fbc8f;
    border-radius: 2px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 3px dashed #e8f5e8;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
    border-color: #8fbc8f;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    animation: wiggle 4s ease-in-out infinite;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.service-card p {
    color: #4a7c25;
    line-height: 1.6;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 3px dashed #e8f5e8;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}

.product-image {
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f5e8 100%);
}

.product-image svg {
    width: 100%;
    height: 150px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 2rem 1rem;
    color: #2d5016;
}

.product-card p {
    margin: 0 2rem 2rem;
    color: #4a7c25;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 3px dashed #e8f5e8;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px) rotate(0.5deg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #8fbc8f;
    font-family: serif;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a7c25;
    line-height: 1.6;
}

.testimonial-card cite {
    font-weight: bold;
    color: #2d5016;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 3px dashed #e8f5e8;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px) rotate(-0.5deg);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}

.blog-image {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f5e8 100%);
}

.blog-image svg {
    width: 100%;
    height: 200px;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: #2d5016;
    text-decoration: none;
    font-size: 1.3rem;
}

.blog-content h3 a:hover {
    color: #4a7c25;
}

.blog-content p {
    color: #4a7c25;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #2d5016;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px dashed #2d5016;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #4a7c25;
    border-color: #4a7c25;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c25 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
}

.newsletter h2::after {
    background: white;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: grid;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    color: #2d5016;
    border: 3px dashed transparent;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #8fbc8f;
    transform: scale(1.02);
}

.form-group input::placeholder {
    color: #999;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 3px dashed #e8f5e8;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px) rotate(0.5deg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5016;
}

.contact-item p {
    color: #4a7c25;
    line-height: 1.4;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    display: block;
    width: 50px;
    height: 50px;
    padding: 10px;
    background: white;
    border-radius: 50%;
    border: 3px dashed #e8f5e8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2d5016;
    border-color: #2d5016;
    transform: scale(1.1) rotate(10deg);
}

.social-links a:hover svg {
    stroke: white;
}

.social-links svg {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #8fbc8f;
    transform: skew(-10deg);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8fbc8f;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px dashed #4a7c25;
    color: #ccc;
}

/* About Page Styles */
.about-main {
    margin-top: 80px;
}

.about-hero {
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f5e8 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #4a7c25;
    font-style: italic;
}

.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #4a7c25;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-image svg {
    width: 100%;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 3px dashed #e8f5e8;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px) rotate(-1deg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    animation: wiggle 5s ease-in-out infinite;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.1);
    border: 2px dashed #e8f5e8;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a7c25;
    font-size: 0.9rem;
}

.team-image svg {
    width: 100%;
    height: 250px;
    animation: float 4s ease-in-out infinite;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    margin-bottom: 2rem;
    color: #4a7c25;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mission-list {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.mission-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 15px;
    border-left: 5px solid #8fbc8f;
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.1);
    color: #4a7c25;
    position: relative;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #2d5016;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 3px dashed #2d5016;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-content,
    .team-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .blog-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}