/* =========================================================
   ALL TRAINER PAGE + FOOTER
   Add this at the bottom of assets/css/style.css
   Uses the same Miss Academy theme: lime, black, pink.
========================================================= */

/* Page base */
body {
    font-family: var(--font-body, 'acumin-pro', Arial, sans-serif);
    background: #000;
}

/* ================================
   ALL TRAINER PAGE
================================ */
.all-trainer-section {
    position: relative;
    overflow: hidden;
    padding: 170px 20px 90px;
    background:
        radial-gradient(circle at top left, rgba(215, 255, 0, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(230, 24, 140, 0.18), transparent 35%),
        #050505;
}

/* small lime line under nav */
.all-trainer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--lime, #D7FF00);
    z-index: 1;
}

.all-trainer-section .container {
    position: relative;
    z-index: 2;
}

.all-trainer-title {
    text-align: center;
    margin-bottom: 58px;
}

.all-trainer-title h1 {
    font-family: var(--font-heading, 'helvetica-lt-pro', 'acumin-pro-wide', Arial, sans-serif);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.all-trainer-title span {
    color: var(--lime, #D7FF00);
    text-shadow: 0 0 18px rgba(215, 255, 0, 0.22);
}

.all-trainer-title p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

/* trainer cards */
.trainer-grid-card {
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: #111111;
    border: 1px solid rgba(215, 255, 0, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.trainer-grid-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 255, 0, 0.65);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.52);
}

.trainer-grid-image {
    position: relative;
    height: 390px;
    background: #181818;
    overflow: hidden;
}

.trainer-grid-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.04) 0%,
        rgba(0, 0, 0, 0.12) 45%,
        rgba(0, 0, 0, 0.42) 100%
    );
    pointer-events: none;
}

.trainer-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.trainer-grid-card:hover .trainer-grid-image img {
    transform: scale(1.045);
}

.trainer-grid-content {
    padding: 28px 24px 30px;
    text-align: center;
}

.trainer-grid-content h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.trainer-grid-content p {
    margin: 0 0 22px;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.45;
}

.trainer-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.trainer-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lime, #D7FF00);
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.trainer-icons a:hover {
    background: #e6188c;
    color: #ffffff;
    transform: translateY(-3px);
}

.trainer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #e6188c;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.trainer-btn:hover {
    background: var(--lime, #D7FF00);
    color: #000000;
    transform: translateY(-2px);
}

/* ================================
   SMALL FOOTER
================================ */
.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 34px 5% 20px;
    border-top: 3px solid var(--lime, #D7FF00);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
    width: 150px;
    height: auto;
}

.footer-brand p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.5;
    text-align: right;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 20px 0 14px;
}

.footer-links a {
    color: var(--lime, #D7FF00);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .all-trainer-section {
        padding: 130px 18px 72px;
    }

    .all-trainer-title {
        margin-bottom: 42px;
    }

    .trainer-grid-image {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .all-trainer-section {
        padding: 112px 14px 54px;
    }

    .all-trainer-title h1 {
        font-size: 36px;
        line-height: 1;
    }

    .all-trainer-title p {
        font-size: 14px;
    }

    .trainer-grid-card {
        border-radius: 24px;
    }

    .trainer-grid-image {
        height: 330px;
    }

    .trainer-grid-content {
        padding: 24px 18px 26px;
    }

    .trainer-grid-content h3 {
        font-size: 20px;
    }

    .trainer-grid-content p {
        min-height: auto;
        font-size: 14px;
    }

    .trainer-btn {
        width: 100%;
        max-width: 230px;
    }

    .site-footer {
        padding: 30px 20px 18px;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 14px;
    }

    .footer-brand img {
        width: 130px;
    }

    .footer-brand p {
        text-align: center;
        font-size: 13px;
    }

    .footer-links {
        gap: 16px;
        padding: 18px 0 14px;
    }

    .footer-links a {
        font-size: 12px;
    }
}
