/* ============================================
   MPYPCP Official Website - Global Styles
   ============================================ */

/* CSS Variables - Theme Colors */
:root {
    --primary-red: #c62828;
    --secondary-black: #0f0f0f;
    --background-white: #ffffff;
    --background-light-grey: #f9f9f9;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #e0e0e0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

/* Container: see layout-system.css for full mobile-first and desktop master */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 1024px) {
    .container {
        max-width: 1500px;
        padding: 0 1.875rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}


/* --- CAREER OPPORTUNITIES SECTION --- */
.career-opportunities-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 70px 0;
    position: relative;
}
.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.career-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}
.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--primary-red);
}
.career-icon {
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--primary-red) 10%, transparent);
    color: var(--primary-red);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
}
.career-card:hover .career-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1) rotate(5deg);
}
.career-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}
.career-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
