@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-white: #ffffff;
    --bg-subtle: #f4f7f5;
    --green-dark: #1b5e20;
    --green-accent: #2e7d32;
    --text-black: #0a0a0a;
    --text-muted: #4a4a4a;
    --border-color: #e0e0e0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--green-dark);
    text-decoration: none;
}

nav a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    margin-left: 2rem;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    padding: 6rem 0;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 0 0 350px;
    height: 350px;
    border-radius: 2rem;
    background-color: var(--bg-subtle);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

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

/* Products Section */
.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--green-dark);
}

.products {
    padding: 6rem 0;
    background-color: var(--bg-subtle);
}

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

.product-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--green-dark);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--green-dark);
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-card .tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-subtle);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--green-dark);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--green-dark);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--green-accent);
}

.btn-outline {
    border: 2px solid var(--green-dark);
    color: var(--green-dark);
}

.btn-outline:hover {
    background-color: var(--green-dark);
    color: var(--bg-white);
}

.status-hint {
    font-style: italic;
    font-size: 0.9rem;
    color: #f57c00; /* Subtle orange for 'in development' */
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    margin: 0 1rem;
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--green-dark);
}

.legal-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 4rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        flex: 0 0 250px;
        height: 250px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav a {
        margin: 0 0.75rem;
    }
}
