.project-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 6rem;
}

.project-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.project-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-box:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 2rem;
    color: #333;
}

.project-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #c1bdc1;
    text-align: center;
}

.project-details {
    margin-bottom: 2rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Première description plus claire */
.project-description:nth-of-type(1) {
    color: #a2a0a2;
}

/* Deuxième description plus foncée */
.project-description:nth-of-type(2),
.project-description-2 {
    color: #818080;
}

.project-technologies {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.project-technologies h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #a2a0a2;
}

.project-technologies p {
    color: #818080;
    line-height: 1.5;
}

/* Style pour le lien GitHub */
.project-technologies a {
    color: #818080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-technologies a:hover {
    color: #818080;
    text-decoration: none;
}

.launch-button {
    display: block;
    width: 200px;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: white;
    background: #4e9af1;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.launch-button:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 154, 241, 0.3);
}

.launch-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-container {
        padding: 1rem;
        padding-top: 5rem;
    }

    .project-image {
        height: 300px;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-content h1 {
        font-size: 2rem;
    }

    .project-description {
        font-size: 1rem;
    }
}
