/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 1100;
}
.menu-toggle .bar {
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100vw;
        background: linear-gradient(135deg, #0A3A2E, #1a4f3f);
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        padding: 2rem 0 1rem 0;
        gap: 1.5rem;
        align-items: center;
        z-index: 1001;
        transition: max-height 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
    .nav-links.open {
        display: flex;
        max-height: 500px;
        transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
}
/* Language Toggle Button */
.lang-toggle {
    background: transparent;
    border: 2px solid #9ccc65;
    color: #fff;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 20px;
    margin-left: 1.5rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-size: 1rem;
}
.lang-toggle:hover {
    background: #9ccc65;
    color: #0A3A2E;
}
/* Arkadia Farming Technologies Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero background image (behind text) */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('assets/background.jpg') center center no-repeat;
    background-size: cover;
    opacity: 0.35;
    pointer-events: none;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #0A3A2E, #1a4f3f);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #9ccc65;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 58, 46, 0.9), rgba(26, 79, 63, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f0f8f0" width="1200" height="800"/><g opacity="0.1"><circle cx="200" cy="200" r="100" fill="%2374c489"/><circle cx="800" cy="400" r="150" fill="%2574c489"/><circle cx="400" cy="600" r="80" fill="%2574c489"/></g></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #7cb342, #9ccc65);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 179, 66, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fbf8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0A3A2E;
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-visual {
    background: linear-gradient(45deg, #e8f5e8, #d4edda);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.greenhouse-icon {
    width: 200px;
    height: 150px;
    background: linear-gradient(45deg, #7cb342, #9ccc65);
    border-radius: 20px 20px 0 0;
    margin: 0 auto 20px;
    position: relative;
}

.greenhouse-icon::before {
    content: '🌿';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #7cb342;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #7cb342, #9ccc65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.product-card h3 {
    text-align: center;
    margin-bottom: 15px;
    color: #0A3A2E;
    font-size: 1.5rem;
}

.product-card p {
    text-align: center;
    color: #666;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A3A2E, #1a4f3f);
    color: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.tech-features {
    list-style: none;
}

.tech-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.tech-features li::before {
    content: '✓';
    background: #7cb342;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

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

.printer-icon {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 2px dashed rgba(255,255,255,0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fbf8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item::before {
    content: '📍';
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
}

.contact-item:nth-child(2)::before { content: '📧'; }
.contact-item:nth-child(3)::before { content: '📞'; }

.map-placeholder {
    background: linear-gradient(45deg, #e8f5e8, #d4edda);
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0A3A2E;
}

/* Footer */
footer {
    background: #0A3A2E;
    color: white;
    text-align: center;
    padding: 40px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .tech-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Make section title white in technology section */
.technology .section-title {
    color: #fff;
}

.product-circle {
    width: 3em;
    height: 3em;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px #fff, 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
}
