/*//////////////////////////////////////////////////////////////*/
/* EXPLORER */
/*//////////////////////////////////////////////////////////////*/

#explorer{
    width: 100%;
    background-color: var(--purple);
    color: var(--white);
    position: relative;
    z-index: 2;
    background-image: url('../../assets/images/pattern_triangle_bottom.svg');
    background-size: 80%;
    background-position: bottom;
    background-repeat: no-repeat;
}

#explorer .explorer_content{
    width: 100%;
    
}

#explorer .explorer_categories{
    display: flex;
    justify-content: space-around;
}

#explorer .explorer_categories .explorer_category{
    text-align: center;
    font-size: 1.8em;
    font-family: 'Raisonne', sans-serif;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    margin-bottom: 40px;
}

#explorer .explorer_categories .explorer_category.active{
    opacity: 1;
    color: var(--pink);
}

#explorer .explorer_categories .explorer_category:hover{
    opacity: 1;
    cursor: pointer;
}

#explorer .explorer_categories .explorer_category [data-lucide]{
    stroke-width: 2px;
    width: 25px;
    height: 25px;
}

#explorer .panel{
    position: relative;
    width: 100%;
    height: 330px;
    padding: 50px;
    background-color: #18092E;
    margin-bottom: 40px;
    border-radius: 5px;
}

#explorer .panel .panel_indicator{
    position: absolute;
    top: -6px;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: #18092E;
    border-radius: 5px 0px 0px 0px;
    transform: rotate(45deg) translateX(-50%);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}



#explorer .panel .container{
    display: flex;
    gap: 20px;
}

#explorer .panel .panel_item{
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
}

#explorer .panel .panel_item .image{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

#explorer .panel .panel_item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#explorer .panel .panel_item:hover .image img{
    transform: scale(1.1);
}

#explorer .panel .panel_item .overlay{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.4) 0%, rgba(96, 70, 150, 1) 100%);
}

#explorer .panel .panel_item .overlay_arrow{
    position: absolute;
    top: 10px; right: 10px;
}


#explorer .panel .panel_item .info{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#explorer .panel .panel_item .info .title{
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

#explorer .panel .panel_item .info .date{
    font-size: 0.8rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

#explorer .panel .panel_item .info .date [data-lucide] {
    width: 15px;
    height: 13px;
    stroke-width: 2;
    margin-right: 5px;
}

#explorer .panel .panel_item .info .location{
    font-size: 0.8rem;
    opacity: 0.8;
}

#explorer .panel .panel_item .info .location [data-lucide] {
    width: 15px;
    height: 15px;
    stroke-width: 2;
    margin-right: 5px;
}

#explorer .panel .panel_item.item_all{
    background-color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

#explorer .panel .panel_item.item_all .content{
    text-align: center;
    padding: 20px;
}

#explorer .panel .panel_item.item_all:hover{
    background-color: var(--pink_hover);
    cursor: pointer;
}

#explorer .panel .panel_item.item_all .content .icon [data-lucide]{
    width: 70px;
    height: 70px;
    stroke-width: 1;
    margin-bottom: 10px;
}

#explorer .panel .panel_item.item_all .content .more{
    font-size: 1rem;
    font-weight: bold;
}




@media (max-width: 1024px) {
    #explorer .explorer_categories .explorer_category {
        font-size: 1.8rem;
    }
    
    #explorer .panel {
        height: auto;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    #explorer.site_card{
        padding-top: 40px;
    }
    
    #explorer .explorer_categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    #explorer .explorer_categories .explorer_category {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center;
        padding: 0px 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    #explorer .explorer_categories .explorer_category [data-lucide] {
        width: 18px;
        height: 18px;
    }
    
    #explorer .panel .container {
        flex-direction: column;
        gap: 15px;
    }
    
    #explorer .panel .panel_item {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 480px) {
     #explorer .explorer_categories .explorer_category {
        font-size: 1rem;
    }
}