﻿/* ===== Global Styles ===== */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 3em;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.2em;
    }

/* ===== Products Section ===== */
.products-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

    .products-section h2 {
        text-align: center;
        font-size: 2.5em;
        margin-bottom: 40px;
    }

/* ===== Product Grid ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* ===== Product Card ===== */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .product-card h3 {
        margin: 15px 0 10px 0;
        font-size: 1.5em;
    }

    .product-card p {
        padding: 0 15px;
        font-size: 0.95em;
        color: #555;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

/* ===== Different Colors for Each Product ===== */
.chilly {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: #fff;
}

.sweet-pepper {
    background: linear-gradient(135deg, #ffa502, #ff7f50);
    color: #fff;
}

.tomato {
    background: linear-gradient(135deg, #ff6348, #ff4500);
    color: #fff;
}

.brinjal {
    background: linear-gradient(135deg, #8e44ad, #6f42c1);
    color: #fff;
}

.cucumber {
    background: linear-gradient(135deg, #2ed573, #1eae63);
    color: #fff;
}

.pumpkin {
    background: linear-gradient(135deg, #ff7f50, #ff6f00);
    color: #fff;
}

.watermelon {
    background: linear-gradient(135deg, #ff3f34, #ff7f50);
    color: #fff;
}

.melon {
    background: linear-gradient(135deg, #ffe66d, #ffdd59);
    color: #333;
}

.gourds {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: #fff;
}

.okra {
    background: linear-gradient(135deg, #70a1ff, #1e90ff);
    color: #fff;
}
/* Center the button */
.location-footer {
    text-align: center; /* Horizontally center content */
    margin: 40px 0; /* Optional spacing from other sections */
}

/* Button styling */
.more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6dd5ed, #2193b0); /* Gradient color */
    color: #fff; /* Text color */
    font-size: 1.1em;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px; /* Rounded pill shape */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    /* Hover effect */
    .more-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        background: linear-gradient(135deg, #2193b0, #6dd5ed); /* Reverse gradient */
    }
