.homepage {
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: darkgray;
    background-image: url('/media/homepage2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.statement-div {
    position: fixed;
    bottom: 7vh;
    left: 7vh;
    color: white;
}

 .slogan {
    font-family: Arial, sans-serif;
    font-size: clamp(28px, 10vh, 80px); 
    width: 100%;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: -0.06em;
}
.subtext {
    width: 52%;
    font-size: clamp(14px, 3vh, 24px);
}
.home-user-icon{
    position: absolute;
    top: 0; left: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between; /* logo à gauche, boutons à droite */
    align-items: center;
    padding: 20px 20px 20px 40px;
}
.home-user-icon .icon-wrapper-buttons {
    display: flex;
    gap: 40px;
}
.home-logo{
    width: 250px;
    height: auto;      
}
.home-a {
    text-decoration:none;
    font-size: 20px;
}
.home-login {
    color:white;
    border: 1px solid white;
    border-radius:5px;
    padding: 5px 15px 5px 15px;
    margin-right: 20px;
}

.home-login:hover, .home-login:visited {
    background-color: white;
    color: black;
    text-decoration:none;
}

.home-subscribe {
    color:white;
    border-radius:5px;
    padding: 5px;
}

.image-row {
    display: flex;           /* aligne les images horizontalement */
    justify-content: flex-start; /* centre les images dans la div */
    gap: 20px;               /* espace entre les images */
    align-items: center; 
    width: max-content;
    padding:10px
}

.row-img {
    width: auto;   /* largeur fixe pour chaque image */
    height: 75px;   
    filter: brightness(0) invert(1);
}
.row-img.orange{
    height: 60px;
}