.hero {
    position: relative;
    width: 100%;
    height: 900px;

    margin-top: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    display: flex;
    flex-direction: column;

    background: url('/assets/backgrounds/Art-background-1.jpg') no-repeat center center/cover;

    
    color:#4d4d4d;
    z-index: 0;

}
/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: #000000a4; 
    z-index: 1;
} */
.bg-logo{
    width: 40%;
    height: auto;

    position: relative;
    margin-top: 100px;
    margin-bottom: 50px;

    z-index: 1;
    opacity: 1;
    border-style: solid;
    border-width: 3px;
    border-color: #a77e19;

    filter: drop-shadow(3px 3px 10px rgb(0, 0, 0));
}


.wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: left;

    padding-top: 100px;
    
}


.wrapper:after{
    height: 50%;
    width: 2px; /* left border thickness */
    top: 0;
    left: 0;
} */

.art-item, .art-item-h{


    display: flex;
    flex-direction: column;
}
.art-item:hover, .art-item-h:hover{
    cursor: pointer;
    scale: 1.05;
}
.art-item img{
    width: auto;
    height: 250px;
    
    padding: 10px;
    border: #856411 solid 1px;
}
.art-item-h img{
    width: 300px;
    height: auto;
    
    padding: 10px;
    border: #856411 solid 1px;
}
.art-item .paragraph, .art-item-h .paragraph{
    margin: 0;
    text-align: left;
}

.red-p{
    
    text-shadow: 2px 2px 4px rgb(0, 0, 0);
    padding-left: 2px;
    padding-right: 2px;
    
    color: red;
    position: relative;
    top: -120px;
    left: 12px;

}
/* Lighbox Viewer */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    flex-direction: column;
}
  
.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 0 20px #000;
}
  
.nav-btn {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    background: rgba(0, 0, 0, 0.4);
}
  
.prev {
    left: 20px;
  }
  
.next {
    right: 20px;
}
  
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    user-select: none;
}
  
.hidden {
    display: none;
}

@media (min-width: 2560px) {
    
    .hero{
        height: 1100px;
    }
    .red-p{
        top: -145px;
    }




}

@media (max-width: 450px){

    .hero {
        position: relative;
        width: 100%;
        height: 550px;
    
        margin-top: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        
        display: flex;
        flex-direction: column;
    
        background: url('/assets/backgrounds/Art-background-1.jpg') no-repeat center center/cover;
    
        
        color:#4d4d4d;
        z-index: 0;
    
    }
    .bg-logo{
        margin-top: 0;
        width: 90%;
        height: auto;
    }

    .for-sale{
        margin-top: 20px;

    }

    /* images */
    .art-item{
        width: 100%;
        margin-top: -50px;

    }
    .art-item img{
        width: 100%;
        height: auto;
    }
    
    

}

@media (max-width: 1366px){

    .bg-logo{
        margin-top: 0;
    }




}



  