﻿/* Hero Section */
.seeds-hero-section {
    position: relative;
    background: url('/Content/Images/seedsbc.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seeds-hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seeds-hero-content {
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

    .seeds-hero-content h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #f8ffb4;
    }

    .seeds-hero-content p {
        font-size: 1.2rem;
        line-height: 1.7;
        color: #f0f0f0;
    }

.seeds-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px #000;
}
/* Grid Section */
.seeds-grid-section {
    padding: 60px 20px;
    background-color: #fdfdfd;
}

.section-heading {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 40px;
}

.seed-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .seed-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.image-wrapper {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: visible; /* allow base to extend */
    display: flex;
    align-items: center;
    justify-content: center;
}

.seed-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.seed-card:hover .seed-img {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e7d32;
}

.card-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.card-text {
    font-size: 0.95rem;
    color: #666;
}
.seed-base {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20px;
    background: radial-gradient(ellipse at center,
        rgba(0,0,0,0.25) 0%, 
        rgba(0,0,0,0) 80%);
    border-radius: 50%;
    z-index: 1;
}

/* Hover zoom effect */
.seed-card:hover .seed-img {
    transform: scale(1.05) translateY(-5px);
}