
/* Soutien Page Styles */
.soutien-content {
    min-height: calc(100vh - 48px);
}

.soutien-hero {
    background: linear-gradient(135deg, #081236 0%, #0f2b5c 45%, #1b6fb4 100%);
    color: white;
    padding: 120px 40px 40px 40px;
    text-align: center;
}

.soutien-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.soutien-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Proxima Nova', Arial, sans-serif;
    white-space: nowrap;
    display: inline-block;
}

.soutien-hero-title .title-blue {
    display: inline;
    white-space: nowrap;
}

.soutien-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'Proxima Nova', Arial, sans-serif;
    white-space: normal;
    overflow-wrap: normal;
}

.soutien-cards-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

.soutien-cards-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.soutien-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.soutien-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.soutien-card-header {
    margin-bottom: 25px;
}

.soutien-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: white;
}

.soutien-card-icon.volunteer {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.soutien-card-icon.donation {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.soutien-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.soutien-card-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.soutien-card-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Proxima Nova', Arial, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.soutien-card-btn.volunteer-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.soutien-card-btn.donation-btn {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.soutien-card-btn:hover {
    transform: translateY(-2px);
}

.soutien-card-btn i {
    margin-right: 10px;
}

/* Soutien Image Section */
.soutien-image-section {
    margin: 0;
    padding: 0;
}

.soutien-bottom-image {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.volunteer-btn {
    background: #e91e63;
    color: white;
}

.volunteer-btn:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    margin: 5% auto;
    max-width: 800px;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
}

.modal-content.small-modal {
    max-width: 400px;
}

.modal-body {
    margin-bottom: 25px;
    color: #6c757d;
    line-height: 1.5;
    display: flex;
    min-height: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 0 0 15px;
}

.modal-form {
    flex: 1;
    padding: 40px;
}

.modal-form-full {
    padding: 40px;
}

.modal-form h2,
.modal-form-full h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Proxima Nova', Arial, sans-serif;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #e91e63;
    outline: none;
}

.form-group small {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    line-height: 1.4;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
}

.rgpd-link {
    color: #3498db;
    text-decoration: underline;
}

.form-submit-btn {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Proxima Nova', Arial, sans-serif;
    transition: transform 0.3s ease;
    width: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
}

.form-submit-btn i {
    margin-right: 10px;
}
