/* ==================== */
/* STYLES SPÉCIFIQUES PAGE RÉALISATIONS */
/* ==================== */

/* Reset pour la page réalisations */
body {
    background-color: #0f0f0f !important;
    color: #ffffff !important;
}

/* Sections de réalisations */
.achievement-section {
    padding: 4rem 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    border: 1px solid rgba(0,229,255,0.1);
    opacity: 1 !important;
    display: block !important;
    position: relative;
    overflow: hidden;
}

.achievement-section h2 {
    color: #00e5ff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Baloo 2', sans-serif;
    text-shadow: 0 2px 8px rgba(0,229,255,0.2);
}

.achievement-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-details.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.achievement-details.reverse > * {
    direction: ltr;
}

.realization-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.realization-image:hover {
    transform: scale(1.05);
}

.realization-text {
    color: #ffffff;
}

.realization-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 1rem;
}

.realization-text strong {
    color: #00e5ff;
    font-weight: 600;
}

.realization-text a {
    color: #00e5ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.realization-text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Section navigation */
.more-realizations {
    text-align: center;
    padding: 4rem 2rem 4rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    margin: 2rem auto 0 auto;
    border-radius: 20px;
    border: 1px solid rgba(0,229,255,0.1);
    max-width: 600px;
    display: block;
    margin-bottom: 3.5rem !important;
}

.more-realizations::after {
    content: "";
    display: block;
    height: 2.5rem;
}

.more-realizations p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00e5ff 0%, #0077c2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,229,255,0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,229,255,0.4);
    background: linear-gradient(135deg, #0077c2 0%, #00e5ff 100%);
}

/* Animations */
.achievement-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.achievement-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .achievement-details,
    .achievement-details.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-section {
        padding: 2rem 1rem;
    }
    
    .achievement-section h2 {
        font-size: 1.8rem;
    }
    
    .realization-image {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .achievement-section {
        padding: 1.5rem 1rem;
    }
    
    .achievement-section h2 {
        font-size: 1.5rem;
    }
    
    .realization-text p {
        font-size: 1rem;
    }
} 

footer {
    margin-top: 3rem !important;
} 