@charset "UTF-8";



.full-width {
    width: 100vw;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: #C8CFD5;
    margin: 0;
}
h1, h2, h3 {
    color: var(--accented);
}
h1, h2 {
    font-size: 2rem;
}
span {
    color: #92C189;
}

html, body {
    height: 100%;
    margin: 0;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* prend toute la hauteur visible */
}

.site-content {
    flex: 1; /* pousse le footer vers le bas */
}

.footer {
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: 0.8rem;
    margin-top: 50px;
}



.text-entrance {
    opacity: 0;
    transform: translateY(20px);
    animation: textEntrance 2s ease forwards;
}

@keyframes textEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}






.highlight {
    background-color: aliceblue;
    transition: background-color 0.3s ease; /* la transition vers la couleur normale */
}

/* couleur normale à la fin */
.row {
    background-color: transparent;
}

.arrows-container .upArrow {
    font-size: 5rem !important;
}

/*# sourceMappingURL=style.css.map */



/* POPUP */
.img-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.img-popup-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.gallery-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    z-index: 990;

    scroll-snap-type: x mandatory;
    overflow: scroll;
}

.gallery-popup-overlay .gal-img-container {
    position: relative;
    flex: 0 0 100%;
    scroll-snap-align: start;
    text-align: center;
}

.gallery-popup-overlay img {
    width: 70%;
    max-height: 80vh;
    object-fit: contain;
}

.popup-btn {
    position: fixed;
    z-index: 999;

    font-size: 4em;
    padding: 10px;

    cursor: pointer;
    transition: 0.3s;
}
.popup-btn:hover {
  font-size: 4.3em;
}

.popup-btn.previous {
    left: 0;
    top: 50%;
    transform: scale(-1) translateY(50%);
}
.popup-btn.next {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.gal-img-container .download-btn-cont {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.popup-btn.download {
    display: inline-block;
    font-size: 2.3em;
    transform: translateX(-50%);
    transition: 0.3s;
}
.popup-btn.download:hover {
    font-size: 2.5em;
}