/*
=================================================================
  The Eco Works — Resources Section Styles
  File: resources.css

  INSTALLATION:
  1. Upload into your /css/ folder
  2. Already linked in the new index.html
=================================================================
*/

/* ── Section wrapper ─────────────────────────────────────────── */
.resources-section {
    background: #f4f9f6;
    float: left;
    width: 100%;
    padding-bottom: 60px;
}

.resources-section h1 {
    color: #1a3a2a;
    margin-top: 60px;
    margin-bottom: 10px;
}

.resources-subtitle {
    text-align: center;
    font: normal normal normal 16px/26px 'Century Gothic', sans-serif;
    color: #5a7a6a;
    max-width: 560px;
    margin: 0 auto 40px auto;
}

/* ── Column spacing ──────────────────────────────────────────── */
.resource-col {
    margin-bottom: 24px;
}

/* ── Card — entire card is a link ────────────────────────────── */
.resource-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid #d8ede5;
    padding: 22px 20px 18px;
    height: 100%;
    text-decoration: none;
    font-family: 'Century Gothic', sans-serif;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    box-sizing: border-box;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(29, 158, 117, 0.12);
    border-color: #1D9E75;
    text-decoration: none;
}

/* ── Card top row: icon + badge ──────────────────────────────── */
.resource-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

/* ── Icon circle ─────────────────────────────────────────────── */
.resource-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #e1f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-icon svg {
    width: 20px;
    height: 20px;
    stroke: #1D9E75;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Badges ──────────────────────────────────────────────────── */
.resource-badge {
    font: normal normal bold 10px/1em 'Century Gothic', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 20px;
}

.badge-standard {
    background-color: #e1f5ee;
    color: #0F6E56;
}

.badge-gov {
    background-color: #e3edf5;
    color: #1a4a6e;
}

.badge-cert {
    background-color: #fef3e0;
    color: #7a4a0a;
}

.badge-body {
    background-color: #f1efe8;
    color: #5F5E5A;
}

/* ── Resource name ───────────────────────────────────────────── */
.resource-name {
    font: normal normal bold 15px/22px 'Century Gothic', sans-serif;
    color: #1a3a2a;
    margin: 0 0 8px 0;
    text-align: left;
}

/* ── Description ─────────────────────────────────────────────── */
.resource-desc {
    font: normal normal normal 12px/20px 'Century Gothic', sans-serif;
    color: #4a6a58;
    margin: 0 0 16px 0;
    flex-grow: 1;
    text-align: left;
}

/* ── Visit link ──────────────────────────────────────────────── */
.resource-link {
    font: normal normal bold 12px/18px 'Century Gothic', sans-serif;
    color: #1D9E75;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.resource-arrow {
    font-size: 15px;
    display: inline-block;
    transition: transform 0.18s ease;
}

.resource-card:hover .resource-arrow {
    transform: translateX(3px);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 767px) {
    .resources-section {
        padding-bottom: 32px;
    }
    .resource-card {
        padding: 18px 16px 14px;
        margin-bottom: 0;
    }
}
