﻿/* ===== Gallery Section ===== */
.gallery-section {
    background: linear-gradient(135deg, #fdfbfb, #ebedee); /* Soft background */
    padding: 80px 20px;
    text-align: center;
}

.gallery-title h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.gallery-title p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
}

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* ===== Gallery Item ===== */
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 20px;
    }

    /* Subtitle */
    .gallery-item .subtitle {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0,0,0,0.6);
        color: #fff;
        padding: 8px 15px;
        border-radius: 15px;
        font-weight: 600;
    }

    /* Hover effect */
    .gallery-item:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }

    /* ===== Different colors border or shadow for each product ===== */
    .gallery-item.chilly img {
        border: 5px solid #ff6b6b;
    }

    .gallery-item.tomato img {
        border: 5px solid #ff4500;
    }

    .gallery-item.cucumber img {
        border: 5px solid #2ed573;
    }

    .gallery-item.pumpkin img {
        border: 5px solid #ff7f50;
    }

    .gallery-item.watermelon img {
        border: 5px solid #ff3f34;
    }

    .gallery-item.gourds img {
        border: 5px solid #1dd1a1;
    }
/* 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 */
    }
