/* ====== Farming Cards & Pages Styles ====== */

/* Body section */
.farming-section {
    background: #f7f9f5;
    padding: 5rem 0;
}

/* Card hover effect (for overview cards) */
.farming-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.farming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Card link */
.card-link:hover {
    text-decoration: none;
}

/* Headings and card titles */
h1, h2, h3, .card-title {
    font-weight: 700;          /* bolder than normal */
    letter-spacing: 1px;       /* modern spacing */
    line-height: 1.3;          /* better readability */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2); /* subtle depth */
}

/* Gradient for headings (optional, very eye-catching) */
h1.text-warning, h3.text-warning {
    background: linear-gradient(90deg, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Checklists in detail pages */
ul.list-group-item {
    border: none;
    padding-left: 0;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

ul.list-group-item::before {
    content: "✔️";
    margin-right: 10px;
    color: #FFA500;
}

/* CTA Buttons */
.btn-warning {
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;           /* pill-shaped */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #e69500;
    border-color: #e69500;
    transform: translateY(-2px);   /* small hover lift */
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive image shadow & rounded */
.img-fluid.rounded.shadow {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Section header text colors */
.text-success {
    color: #28a745 !important;
}

.text-warning {
    color: #FFA500 !important;
}

/* Extra spacing for cards and content */
.farming-section .container .row.g-4 > div {
    margin-bottom: 2rem;
}

/* Optional: uppercase card titles for impact */
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFA500;
    text-transform: uppercase;
}

/* Make lead text slightly bigger and modern */
.lead {
    font-size: 1.1rem;
    font-weight: 500;
}
