/* --- Global Styles & Variables --- */
:root {
    --primary-green: #00823F; /* Green from logo */
    --primary-yellow: #FDC300; /* Yellow from logo */
    --dark-grey: #333333;
    --medium-grey: #555555;
    --light-grey: #f4f6f8;
    --white: #ffffff;
    --font-family: 'Inter', sans-serif;
}
body {
    font-family: var(--font-family);
    margin: 0;
    color: var(--dark-grey);
    line-height: 1.6;
    font-weight: 400;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4 {
    font-family: var(--font-family);
    color: var(--primary-green);
    margin-top: 0;
    font-weight: 700;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; color: var(--dark-grey); }
p {
    margin-bottom: 1rem;
    color: var(--medium-grey);
}
a {
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.3s ease;
}
a:hover { color: var(--primary-yellow); }
.section-padding { padding: 60px 0; }
.text-center { text-align: center; }
.top-margin { margin-top: 30px; }
/* --- Header --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.logo { height: 60px; }
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav li { margin-left: 30px; }
nav a {
    font-weight: 600;
    color: var(--dark-grey);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
nav a:hover, nav a.active {
    color: var(--primary-green);
    border-bottom: 2px solid var(--primary-yellow);
}
/* --- Hero Section --- */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}
.hero-content h1 { color: var(--white); }
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--white);
}
.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    margin: 5px;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}
.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--dark-grey);
    border: 2px solid var(--primary-yellow);
}
.btn-primary:hover {
    background-color: #ffD433;
    color: var(--dark-grey);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-grey);
}
.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}
.btn-primary-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}
/* --- Split Section --- */
.split-section {
    display: flex;
    align-items: center;
    gap: 40px;
}
.split-text { flex: 1; }
.split-image { flex: 1; }
.split-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* --- Featured Products Section --- */
.featured-products-section { background-color: var(--light-grey); }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.product-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.product-card .product-image {
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card img {
    max-height: 100%;
    max-width: 100%;
}
.product-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}
.product-card p {
    color: var(--medium-grey);
    font-size: 0.9rem;
    margin-bottom: 0;
}
/* --- Mission Section --- */
.mission-section {
    background-color: var(--primary-green);
    color: var(--white);
}
.mission-section h3, .mission-section p { color: var(--white); }
.mission-section h3 { font-weight: 600; }
.mission-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}
/* --- About Page --- */
.page-banner {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 130, 63, 0.8), rgba(0, 130, 63, 0.8)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
}
.page-banner h1 {
    color: var(--white);
    text-align: center;
    font-size: 3rem;
}
.about-intro-text {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 1.1rem;
}
.about-tagline {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 60px;
    border-top: 2px solid var(--primary-yellow);
    padding-top: 40px;
}
/* --- Team Section --- */
.team-section { background-color: var(--light-grey); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.team-card {
    background-color: var(--white);
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.team-card-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 5px solid var(--primary-green);
}
.team-card p.title {
    color: var(--primary-green);
    font-weight: 600;
    margin: 0 0 15px 0;
}
/* --- Farmer's Corner --- */
.precautions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.precaution-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.precaution-item img {
    height: 60px;
    width: 60px;
}
.toxicity-section {
    margin-top: 60px;
    border-top: 1px solid #ddd;
    padding-top: 40px;
}
.toxicity-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

/* .toxicity-item {
  overflow: hidden;
  position: relative;
  display: inline-block;
} */

.toxicity-item img { 
  /* position: absolute;
  top: 0;
  left: 0; */
  height: 100px; 
}
/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}
.contact-info p { margin-bottom: 20px; }
.contact-info strong {
    color: var(--primary-green);
    font-weight: 600;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-family);
}
.contact-form button { width: 100%; }
/* --- Footer --- */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 50px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.footer-col h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    border-bottom: 1px solid #44586d;
    padding-bottom: 10px;
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col p { color: #bdc3c7; }
.footer-col a:hover {
    color: var(--white);
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #44586d;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #bdc3c7;
}
/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .page-banner h1 { font-size: 2.5rem; }
    header .container { flex-direction: column; }
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav li { margin: 5px 10px; }
    .split-section, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .split-image { margin-top: 30px; }
}
/* --- SCROLLING ANIMATION STYLES --- */
.fade-up-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up-hidden.show {
    opacity: 1;
    transform: translateY(0);
}