﻿@font-face {
    font-family: 'Good Time';
    src: url('/font/Good Times Rg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

/* Tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab {
    padding: 10px 20px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .tab:hover {
        background-color: #f2f2f2;
    }

    .tab.active {
        background-color: #C21F61;
        color: #fff;
        border: none;
        box-shadow: 0 4px 10px rgba(194, 31, 97, 0.3);
    }

/* Job grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    transition: opacity 0.3s ease;
}

.hidden {
    display: none;
}

/* Job card */
.job-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .job-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.job-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.job-dept, .job-type, .job-location {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 6px;
}

.job-link {
    font-size: 14px;
    color: #C21F61;
    text-decoration: none;
    float: right;
}

    .job-link:hover {
        text-decoration: underline;
    }

.icon {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        text-align: center;
    }

    .tabs {
        justify-content: center;
    }

    .job-link {
        float: none;
        display: block;
        margin-top: 5px;
    }
}

.contact-form-container {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

    /* Label */
     .form-label {
        color: #C21F61;
        font-weight: 600;
    }

    /* Input + Textarea */
    .contact-form-container .form-control {
        background-color: #f9fafc;
        border: 1px solid #e2e2e2;
        padding: 10px 15px;
        border-radius: 8px;
        transition: all 0.2s ease-in-out;
    }

        .contact-form-container .form-control:focus {
            border-color: #C21F61;
            box-shadow: 0 0 0 0.25rem rgba(194, 31, 97, 0.25);
        }

    /* Nút gửi */
    .contact-form-container button {
        border-radius: 8px;
        font-weight: 600;
        color: #fff !important;
        background: linear-gradient(90deg, #C21F61, #ff6fa3) !important;
        border: none;
        padding: 10px 25px;
        transition: all 0.3s ease-in-out;
    }

        .contact-form-container button:hover {
            background: linear-gradient(90deg, #a81c55, #ff5f97) !important;
            transform: translateY(-2px);
        }