/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Artist Info */
.artist-info {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: justify;
    font-size: 24px; /* Taille de police ajustable */
}

.artist-photo {
    width: 50%;
    height: auto;
    border-radius: 8px;
}

/* Latest Project */
.latest-project {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center; /* Centre les éléments à l'intérieur de la section */
}

.section-title {
    text-align: left; /* Annule le centrage pour "Dernier projet" */
    margin-bottom: 20px; /* Ajoute un espace en bas */
    font-size: 24px; /* Taille de police ajustable */
}

.project-name {
    margin-bottom: 20px; /* Espace entre le nom du projet et la description */
    font-size: 24px; /* Taille de police */
    font-weight: bold;
}

.project-description {
    text-align: justify; /* Justifie le texte de présentation */
    margin-top: 0;
    font-size: 16px; /* Ajustez la taille de police si nécessaire */
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-logo {
    max-width: 100px;
    height: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .artist-info {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    nav ul {
        display: none;
    }

    nav ul.active {
        display: flex;
    }
}
