:root {
    /* Primary Colors provided by user */
    --primary-green: #358259;
    --primary-teal: #035b69;
    --primary-yellow: #ffd215;

    /* Additional Colors for the palette */
    --bg-light: #f4f7f6;
    --bg-white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --accent-orange: #e67e22;
    --footer-bg: #1a252f;
    --border-color: #ddd;

    /* Font settings */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo img {
    height: 60px; /* Adjust based on actual logo size */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-teal);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    color: var(--primary-teal);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(3, 91, 105, 0.8), rgba(53, 130, 89, 0.8)), url('img/img4.jpg'); /* Placeholder fruit market image */
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    text-align: center;
    padding: 8rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
    transform: scale(1.05);
    background-color: #e6c200;
}

/* Sections General */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-teal);
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    margin: 10px auto 0;
}

/* Logo band */
.logo-band {
    padding: 2rem 1rem;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-band img {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

/* About / Mission */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--primary-green);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

/* Services */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-item {
    flex: 1 1 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #ddd;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-green);
    margin-right: 1rem;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.contact-form button {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: var(--primary-green);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between; /* logo left, toggle right */
        gap: 0.75rem;
        flex-wrap: wrap; /* allow nav links to wrap below */
    }
    .logo img {
        height: 40px;
    }
    .nav-toggle {
        display: block; /* place toggle to the far right */
    }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 0.5rem; /* space below logo/toggle row */
    }
    .nav-links.open {
        display: flex;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    .hero {
        padding: 5rem 1rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .services-container {
        flex-direction: column;
    }
    .logo-band img {
        width: 90%;
        max-width: 420px;
    }
}
