body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-style: italic;
}

.intro {
    background-image:
            linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 100%),
            url('../images/bg-hipica.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.max-width-description {
    max-width: 600px;
}

.nav-link {
     letter-spacing: 1.4px;
    font-size: 14px;
    font-weight: 600;
    padding-left: 1rem !important;
    color: white;
 }

.btn-tlf {
    letter-spacing: 0.05em;
    background-color: rgb(212 175 55);
    border-color: rgb(212 175 55);
    color: rgba(0,0,0,0.6);
}

.separate {
    letter-spacing: 4px;
    opacity: 0.8;
}

.separate--dark {
    color: rgb(184, 144, 16) !important;
}

.description {
    font-size: 1rem;

    @media (min-width: 772px) {
        font-size: 1.1rem;
    }

}

.img-box{
    overflow: hidden;
    position: relative;
}

.img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;

}

.img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;

}

.img-box:hover img, .col-box:hover img {
    transform: scale(1.05);
    filter: brightness(60%);
}

.img-box:hover .more, .col-box:hover .more {
    opacity: 1;
}

.more {
    position: absolute;
    bottom: 20px;
    left: 30px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.box-video, .bg-yellow {
background-color: #f9f8ee;
}

lite-youtube {
    width: 100%;
    height: auto;
}

/* Avatar hover effect - grayscale all except the hovered one */
.avatar {
    cursor: pointer;
}

.avatar img {
    transition: all 0.3s ease-in-out;
}

.row:has(.avatar:hover) .avatar img {
    filter: grayscale(1);
    opacity: 0.7;
}

.row:has(.avatar:hover) .avatar:hover img {
    filter: grayscale(0);
    opacity: 1;
}

