﻿/* ===== Training Section ===== */
.training-section {
    background: url('/images/training-bg.jpg') center/cover no-repeat;
}

    .training-section .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
    }

/* ===== Jobs Section ===== */
.job-card {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .job-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    }

/* Gold Outline Button */
.btn-outline-gold {
    border: 1px solid #d4af37;
    color: #d4af37;
}

    .btn-outline-gold:hover {
        background: #d4af37;
        color: #000;
    }
/* ============================= */
/* 📱 Mobile UI Enhancements */
/* ============================= */

@media (max-width: 768px) {

    /* Sections padding */
    .training-section,
    .jobs-section {
        padding: 3rem 1rem;
    }

        /* Headings */
        .training-section h2,
        .jobs-section h2 {
            font-size: 1.6rem;
            text-align: center;
        }

        /* Paragraphs */
        .training-section p,
        .jobs-section p {
            font-size: 0.95rem;
            text-align: center;
            line-height: 1.8;
        }

        /* Lists center align */
        .training-section ul {
            text-align: center;
        }

            .training-section ul li {
                justify-content: center;
            }

        /* Images resize */
        .training-section img {
            max-width: 90%;
            margin-bottom: 1.5rem;
        }

    /* Job cards */
    .job-card {
        padding: 2rem 1.5rem;
    }

        .job-card h4 {
            font-size: 1.2rem;
        }

        .job-card p {
            font-size: 0.9rem;
        }

        /* Buttons */
        .training-section .btn,
        .job-card .btn {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
        }
}
/* Touch optimization */
.btn {
    min-height: 48px;
    border-radius: 12px;
}

.job-card i {
    margin-bottom: 1rem;
}
/* Subtle hover on mobile (tap feedback) */
.job-card:active {
    transform: scale(0.98);
}
