/* careers.css - Specific styles for the Careers page */

/* Wavy Header */
.careers-header-wave {
    position: relative;
    background: radial-gradient(circle at 50% 30%, var(--primary-purple-dark) 0%, var(--bg-dark-purple) 100%);
    padding: 80px 0 120px; /* Extra padding at bottom for the wave */
    text-align: center;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

/* Job Cards */
.job-card {
    background-color: #fff;
    transition: all 0.3s ease;
    border-left: 5px solid transparent !important;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-left-color: #EEBB29 !important;
}

/* Form Styles */
.form-label {
    color: #35155D;
}

.form-control:focus, .form-select:focus {
    border-color: #EEBB29;
    box-shadow: 0 0 0 0.25rem rgba(238, 187, 41, 0.25);
}

.btn-gold {
    background-color: #EEBB29;
    color: #35155D;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #d4a320;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 187, 41, 0.4);
}
