/* Fond de page pour faire ressortir les cartes blanches */
body {
    background-color: #f4f7f6; 
}

.project-wrapper {
    max-width: 1100px;
    margin: -2px auto 40px auto;
    padding: 60px 20px;
}

/* --- CARTES : VISIBILITÉ RENFORCÉE --- */
.modern-step-card {
    background: #ffffff;
    /* Bordure plus sombre et ombre plus marquée */
    border: 1px solid #d1d1d1; 
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
}

.modern-step-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.modern-step-card.reverse { flex-direction: row-reverse; }

/* --- CONTENU --- */
.card-info { flex: 1; }
.card-media { flex: 1.2; }

.card-media img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #eee;
}

.tech-list-pro {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.tech-list-pro li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.tech-list-pro li strong { color: #007bff; }

/* Badges */
.tech-badges { margin-top: 15px; }
.tech-badges span {
    background: #e9ecef;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 8px;
    color: #495057;
}

/* Header */
.project-intro-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* --- FIX GLOBAL ANTI-SCROLL HORIZONTAL --- */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

.wrapper {
    overflow-x: hidden;
}

/* Fix pour les Rows Bootstrap qui dépassent souvent */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* --- NAVBAR FIX --- */
#nav {
    z-index: 9999;
    position: relative;
}

.navbar-custom {
    margin-bottom: 0;
    border: 0;
    background-color: #fff; /* Ou la couleur de ton choix */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Fix SVG Vague */
.wave-divider svg {
    display: block;
    width: 100vw; /* Force la largeur de la vue */
    height: auto;
}

.footer {
    background-color: #1a243a; /* Bleu marine cohérent avec le contact */
    padding: 9px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #00ccff; /* Ton bleu d'accentuation */
    transform: translateY(-3px);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.5px;
}

.terminal-prefix {
    color: #00ccff;
    font-weight: bold;
    margin-right: 5px;
}

.footer-status {
    color: #00ff41; /* Vert terminal pour le côté "Online" */
    font-family: 'Courier New', monospace;
    font-size: 11px;
    margin-left: 10px;
    text-transform: uppercase;
}