
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


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

body {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: 100vh;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #111;
    padding: 0 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #f0f0f0;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s, transform 0.3s;
}

.header-logo i {
    margin-right: 10px;
    color: #C0C0C0;
    transition: transform 0.3s;
}

.header-logo:hover {
    color: #fff;
    transform: translateY(-2px);
}

.header-logo:hover i {
    transform: rotate(5deg);
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    font-size: 0.8em;
    transition: opacity 0.5s;
}

.site-footer:hover {
    opacity: 0.8;
}


.minimal-container {
    max-width: 450px;
    width: 100%;
    text-align: left;
    animation: fadeIn 1.2s ease-out both;
}

h1 {
    font-family: 'Montserrat', serif;
    font-size: 1.3em;
    /* TAILLE RÉDUITE */
    font-weight: 700;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-spacing {
    margin-top: 40px;
}

.portfolio-links {
    margin-bottom: 40px;
}

.portfolio-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color 0.3s, padding-left 0.3s;
}

.portfolio-item:hover {
    color: #000;
    padding-left: 10px;
}

.contact-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color 0.3s, text-decoration 0.3s, transform 0.3s;
}

.contact-link:hover {
    color: #000;
    text-decoration: underline;
    transform: translateX(5px);
}


@media (max-width: 600px) {
    body {
        padding-top: 60px;
    }

    .site-header {
        height: 50px;
        padding: 0 20px;
    }

    .header-logo {
        font-size: 1em;
    }

    h1 {
        font-size: 1.4em;
        /* Taille réduite pour garantir la ligne unique sur mobile */
        margin-bottom: 40px;
    }

    .portfolio-item,
    .contact-link {
        font-size: 1.1em;
    }

    .site-footer {
        height: 35px;
    }
}