body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Navigation Bar */
.navbar {
    background-color: #064f27; /* Dark green */
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Logo Section */
.logo-section {
    text-align: center;
}

.logo-background {
    background: linear-gradient(to bottom, #f7b733 33%, white 33%, white 66%, #f7b733 66%);
    padding: 40px 0 60px; /* Extra bottom padding for space under logo */
}

.logo-image {
    width: 200px;
    display: block;
    margin: 0 auto 40px; /* Space below logo */
}

/* Menu Button */
.menu-button {
    display: inline-block;
    background-color: #064f27; /* Dark green */
    color: white;
    padding: 12px 25px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-button:hover {
    background-color: #046b36; /* Slightly lighter green on hover */
}

/* Background for About Us and Contact Us */
.page-content {
    position: relative;
    min-height: 100vh;
    background: url("images/WhatsApp Image 2025-.jpg") no-repeat center center/cover;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 0;
}

.page-content h1, 
.page-content p, 
.page-content h2, 
.page-content a {
    position: relative;
    z-index: 1; /* make sure text stays above overlay */
}

/* General page background with Nkosi Garden image */
.page-background {
    position: relative;
    min-height: 100vh;
    background: url("images/WhatsApp Image 2025-.jpg") no-repeat center center/cover;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Dark overlay to make content readable */
.page-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 0;
}

/* Title color */
.page-background h1 {
    color: white;
}

/* Keep vegetable list above overlay */
.page-background .vegetable-list {
    position: relative;
    z-index: 1;
}

/* Vegetable cards */
.vegetable-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.vegetable-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
}

.vegetable-item img {
    max-width: 100%;
    border-radius: 8px;
}