/* ==================================================== */
/* VARIABLES GLOBALES */
/* ==================================================== */
:root {
    --primary-color: #2a2a72;
    --secondary-color: #009ffd;
    --background: #1d2227e0;
    --text-color: #35dd13;
    --success: #2ecc71;
    --warning: #f1c40f;
    --danger: #e74c3c;
    --radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ==================================================== */
/* RÉINITIALISATION & STYLES DE BASE */
/* ==================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    background-color: rgb(44,28,26);
    color: var(--text-color);
    line-height: 1.6;
    z-index: 99; 
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/fond2.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1; 
}
  
body > * {
    position: relative;
    z-index: 10000; 
}



/* ==================================================== */
/* EN-TÊTE */
/* ==================================================== */


.container {
    
    max-width: 100%;
    margin: 0 ;
    padding: 0 ;
}

/* ==================================================== */
/* LIENS & BOUTONS */
/* ==================================================== */
.project-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    color: white;
    border-radius: var(--radius);
    text-decoration: none;
    transition: transform 0.2s;
}

.project-link:hover {
    transform: translateY(-2px);
}

.header-right .assessfirst-logo{
    margin-left: -23px;
    scale: 0.8;
}
/* ==================================================== */
/* RESPONSIVE DESIGN */
/* ==================================================== */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .header {
        padding: 2rem 1rem;
    }

    .detail-image {
        height: 250px;
    }
    
    .meta-info {
        flex-direction: column;
    }
}

