@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');
* { font-family: 'Poppins', sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
.top-nav {
    background: rgba(42, 57, 69, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
.home-button {
    background: linear-gradient(135deg, #F9B233 0%, #e5a028 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(249, 178, 51, 0.2);
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 50px;
    padding: 0;
}
.home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);
    transition: 0.5s;
}
.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 178, 51, 0.3);
}
.home-button:hover::before { left: 100%; }
.home-button i { font-size: 1.4rem; }
.candidature-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.candidature-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}
.candidature-header h1 {
    color: #2A3945;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.candidature-header p {
    color: #2A3945;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
}
.candidature-form {
    width: 100%;
    max-width: 700px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(42, 57, 69, 0.08);
    padding: 40px 30px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
label {
    color: #2A3945;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}
.form-control {
    border: 2px solid #422800;
    border-radius: 10px;
    padding: 0.5rem;
    font-size: 1rem;
}
.form-control:focus {
    border-color: #F9B233;
    box-shadow: 0 0 0 0.2rem rgba(249, 178, 51, 0.25);
}
.btn-primary {
    background: linear-gradient(135deg, #F9B233 0%, #e5a028 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 12px 30px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(249, 178, 51, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e5a028 0%, #F9B233 100%);
    color: #2A3945;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
} 