/* -------------------------------------------------
   ORIGINAL GLOBAL STYLES (unchanged)
--------------------------------------------------- */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #f5f7f2;
    color: #333;
}

header {
    background: #3f5930;
    padding: 15px 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 55px;
}

nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

nav a:hover {
    color: #cde6b3;
}

/* Keep your original home hero */
.hero {
    text-align: center;
    padding: 50px;
    background: #eaf4e1;
    border-bottom: 3px solid #d6e8c7;
}

/* Keep your original gallery (About page) */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* -------------------------------------------------
   PRODUCTS PAGE – CUSTOM STYLES
--------------------------------------------------- */

.products-page .product-card {
    max-width: 1100px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.products-page .product-card.reverse {
    flex-direction: row-reverse;
}

.products-page .product-img img {
    width: 430px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.products-page .product-info h2 {
    font-size: 32px;
    color: #1f4320;
    margin-bottom: 12px;
}

.products-page .product-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.products-page .btn {
    display: inline-block;
    background: #2e5f35;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.products-page .btn:hover {
    background: #244d2b;
}

/* RESPONSIVE FIX FOR PRODUCT PAGE ONLY */
@media (max-width: 900px) {
    .products-page .product-card,
    .products-page .product-card.reverse {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .products-page .product-img img {
        width: 100%;
    }
}

/* -------------------------------------------------
   HOME HERO – CABBAGE BACKGROUND (NOT PRODUCTS PAGE)
--------------------------------------------------- */

body:not(.products-page) .hero {
    background: 
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url("images/cabbage1.png") center/cover no-repeat;
    padding: 90px 20px 110px;
    text-align: center;
    color: white;
    border-bottom: 3px solid #d6e8c7;
}

body:not(.products-page) .hero h1 {
    font-size: 2.4rem;
    margin: 6px 0 8px;
    color: #fff;
    text-shadow: 0 3px 8px rgba(0,0,0,0.7);
}

body:not(.products-page) .hero p {
    font-size: 1.05rem;
    margin: 0;
    color: #f1f1f1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.hero-logo {
    width: 160px;
    display: block;
    margin: 0 auto 18px;
    border-radius: 8px;
    filter: drop-shadow(0 4px 18px rgba(0,0,0,0.6));
}

body:not(.products-page) .hero .btn {
    background: #2e5f35;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    margin-t
/* CONTACT PAGE LAYOUT */
.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2,
.contact-form h2 {
    color: #2e5f35;
    margin-bottom: 15px;
}

.contact-info p {
    line-height: 1.7;
}

/* Contact form styling */
.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form form textarea {
    height: 120px;
}

.map-container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 60px;
}

/* Smaller logo for Contact page */
.small-logo {
    width: 110px !important;
}

/* Make contact page hero consistent */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("images/cabbage1.png") center/cover no-repeat !important;
    color: white;
    padding: 80px 20px;
    text-align: center;
}
