.full-height
{
    height: 100vh;
}

/* ----- Block avertissement cookies ----- */
#cookie-banner
{
    align-items: center;
    bottom: 0;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    left: 0;
    opacity: 0;
    padding: 1em;
    pointer-events: none;
    position: fixed;
    right: 0;
    transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
        -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
        -moz-transition: opacity 0.5s ease, transform 0.5s ease;
        -ms-transition: opacity 0.5s ease, transform 0.5s ease;
        -o-transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1000;
}

#cookie-banner.show
{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
}
/* ----- Info traduction ----- */
.translate-user-info
{
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 10;
}

/* ----- Containers ----- */
#homepage-carousel
{
    height: 600px;
    width: 100%;
}

/* ----- Barre de navigation ----- */
.navbar-brand img
{
    width: 40px;
}
.navbar-brand span
{
    position: relative;
    top: 6px;
}
.nav-link
{
    border-bottom: 4px solid transparent;
}
.nav-link.active
{
    border-bottom: 4px solid rgba(255, 80, 80, 1);
}
.nav-link:hover
{
    border-bottom: 4px solid rgba(255, 80, 80, 0.5);
}

/* ----- Bandeau Médaillon / 4 images ----- */
.col-20pc
{
    margin: 0 auto;
    max-height: 230px;
    width: 20%;
}

.medaillon
{
    height: 200px;
    perspective: 1000px;
    position: relative;
    top: -50px;
    width: 200px;
    z-index: 2;
}
.medaillon img
{
    backface-visibility: hidden;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: transform 0.6s ease;
    -webkit-transition: transform 0.6s ease;
    -moz-transition: transform 0.6s ease;
    -ms-transition: transform 0.6s ease;
    -o-transition: transform 0.6s ease;
    width: 100%;
}
.front
{
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}
.back
{
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}
.medaillon:hover .front
{
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.medaillon:hover .back
{
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
}

.image-bandeau-container
{
    height: 200px;
}
.image-bandeau
{
    height: 147px;
    width: 252px;
}
.rotate-left-3deg
{
    background-color: #FFFFFF;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    padding: 5px;
    transition-duration: 1s;
        -webkit-transition-duration: 1s;
        -moz-transition-duration: 1s;
        -ms-transition-duration: 1s;
        -o-transition-duration: 1s;
    transform: rotate(-3deg);
        -webkit-transform: rotate(-3deg);
        -moz-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        -o-transform: rotate(-3deg);
}
.rotate-right-3deg
{
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
    padding: 5px;
    transition-duration: 1s;
        -webkit-transition-duration: 1s;
        -moz-transition-duration: 1s;
        -ms-transition-duration: 1s;
        -o-transition-duration: 1s;
    transform: rotate(3deg);
        -webkit-transform: rotate(3deg);
        -moz-transform: rotate(3deg);
        -ms-transform: rotate(3deg);
        -o-transform: rotate(3deg);
}
.rotate-left-3deg:hover, .rotate-right-3deg:hover
{
    transition-duration: 1s;
        -webkit-transition-duration: 1s;
        -moz-transition-duration: 1s;
        -ms-transition-duration: 1s;
        -o-transition-duration: 1s;
    transform: scale(1.3);
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
    z-index: 1;
}
.rotate-left-3deg:hover, .rotate-right-3deg:hover
{
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2) !important;
}
.banner-figure
{
    bottom: -18px;
    left: -10px;
    right: -10px;
}
.banner-figure div
{
    background-color: rgba(33, 37, 41, 0);
    color: transparent;
    font-size: 60%;
    padding: 5px 10px;
    transition: all 0.75s ease-in-out;
        -webkit-transition: all 0.75s ease-in-out;
        -moz-transition: all 0.75s ease-in-out;
        -ms-transition: all 0.75s ease-in-out;
        -o-transition: all 0.75s ease-in-out;
}
.image-bandeau:hover .banner-figure div
{
    background-color: rgba(33, 37, 41, 0.65);
    color: #FFFFFF;
    transition: all 0.75s ease-in-out;
        -webkit-transition: all 0.75s ease-in-out;
        -moz-transition: all 0.75s ease-in-out;
        -ms-transition: all 0.75s ease-in-out;
        -o-transition: all 0.75s ease-in-out;
}


/* ----- Bloc présentation / Citation ----- */
.homepage-citation
{
    font-size: 2.3rem;
}

.homepage-citation-auteur
{
    font-size: 80%;
    text-align: center;
}

/* ----- Module dernières photos / Albums / Catégories ----- */
.vignette-derniere-photo
{
    height: 300px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}
.vignette-derniere-photo .card
{
    background-color: transparent;
    height: inherit;
}
.vignette-derniere-photo figcaption
{
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    color: #FFFFFF;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    padding: 20px;
    position: absolute;
    right: 0;
    text-align: center;
    transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
        -webkit-transition: transform 0.5s ease, opacity 0.5s ease;
        -moz-transition: transform 0.5s ease, opacity 0.5s ease;
        -ms-transition: transform 0.5s ease, opacity 0.5s ease;
        -o-transition: transform 0.5s ease, opacity 0.5s ease;
}
.vignette-derniere-photo:hover figcaption
{
    opacity: 1;
    transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
}
.vignette-derniere-photo figure
{
    align-items: center;
    display: flex;
    justify-content: center;
}
.vignette-derniere-photo img
{
    transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    transition: transform 1s ease-in-out;
        -webkit-transition: transform 1s ease-in-out;
        -moz-transition: transform 1s ease-in-out;
        -ms-transition: transform 1s ease-in-out;
        -o-transition: transform 1s ease-in-out;
}
.vignette-derniere-photo:hover img
{
    transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
    transition: transform 1s ease-in-out;
        -webkit-transition: transform 1s ease-in-out;
        -moz-transition: transform 1s ease-in-out;
        -ms-transition: transform 1s ease-in-out;
        -o-transition: transform 1s ease-in-out;
}

/* ----- Blog ----- */
.homepage-article-blog
{
    height: 300px;
    margin-bottom: 20px;
}
.homepage-article-blog .card
{
    background-color: transparent;
    height: inherit;
}
.homepage-article-blog .card .card-body
{
    height: 250px;
    overflow: hidden;
}
.homepage-article-blog .card .card-body::after
{
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    bottom: 41px;
    content: "";
    height: 100px; /* hauteur du dégradé */
    left: 0;
    position: absolute;
    width: 100%;
    /* adapter la couleur finale (#fff) au fond de ton card-body */
}

/* ----- Bloc réseaux sociaux ----- */
.card-social-network
{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.card-social-network i
{
    font-size: 2em;
}
.card-social-network:hover .fa-facebook
{
    color: #1877F2;
}
.card-social-network:hover .fa-instagram
{
    color: #E1306C;
}
.card-social-network:hover .fa-tiktok
{
    background: linear-gradient(45deg, #EE1D52, #69C9D0);
    background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

}

/* Boutons de partage vers les réseaux sociaux */
.socialNetworksShare-facebook:hover
{
    background: linear-gradient(135deg, #1877F2 0%, #145DBF 100%);
    color: #FFFFFF;
}
.socialNetworksShare-messenger:hover
{
    background: linear-gradient(135deg, #00C6FF 0%, #0078FF 100%);
    color: #FFFFFF;
}
.socialNetworksShare-whatsapp:hover
{
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color:#FFFFFF;
}
.socialNetworksShare-twitter:hover
{
    background: linear-gradient(135deg, #1DA1F2 0%, #0D8DDB 100%);
    color:#FFFFFF;
}
.socialNetworksShare-linkedin:hover
{
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
    color:#FFFFFF;
}
.socialNetworksShare-pinterest:hover
{
    background: linear-gradient(135deg, #CB2027 0%, #AC0023 100%);
    color:#FFFFFF;
}
.socialNetworksShare-telegram:hover
{
    background: linear-gradient(135deg, #0088CC 0%, #006699 100%);
    color:#FFFFFF;
}
.socialNetworksShare-email:hover
{
    background: linear-gradient(135deg, #FFF3AD 0%, #FFDD06 100%);
}
.socialNetworksShare-instagram:hover
{
    background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
}
.socialNetworksShare-copy:hover, .myCollection-addAlbumCategory:hover, .myCollection-addPhoto:hover
{
    background: linear-gradient(135deg, #B8B9BB 0%, #24282B 100%);
    color:#FFFFFF;
}


