/* PORTFOLIO.CSS */

/* Portfolio item */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.portfolio-item img {
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.portfolio-item .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    border-radius: 10px;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.portfolio-item h5 {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

html, body {
  padding-left: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
}

.footer {
    position: fixed;   /* Fixe le footer */
    bottom: 0;         /* Toujours en bas */
    left: 0;           /* Aligné à gauche */
    width: 100%;       /* Occupe toute la largeur */
    z-index: 1000;     /* Au-dessus des autres éléments */
}