:root {
    --primary-bg: rgb(0,0, 0); /* Slightly lighter than pure black */
    --secondary-bg: rgb(33, 33, 33);
    --tertiary-bg: #3f3f3f;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-blue: rgb(10, 3, 255); /* Bright blue */
    --accent-green: rgb(202, 255, 48); /* Lime green */
    --accent-green-dark: #5cb85c; /* Darker green for selected border */
    --border-color: #444;
    --error-color: #ff6b6b;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

#pf-hero-cont{
    display: flex;
    justify-content: center;
    padding-top: 80px;
    height: 250px;
    width: 100%;
    box-sizing: border-box;
}
#pf-hero-title{
    font-size: max(50px, 6vw);
    line-height: 5vw;
    font-weight: 400;
    margin:0;
}
#pf-main-wrapper{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    width: 100%;
}
.pf-item{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    border: 1px solid var(--accent-green);
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    position: relative;
    overflow: hidden;
}
.pf-item:hover{
    border: 1px solid transparent;
}
.pf-item-img{
    opacity: 0;
    position: absolute;
    top: 0;
    left: -40%;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}
.pf-item-img-show{
    opacity: 1;
    left: 0;
}
.pf-item-content{
    width:70%;
    height: 70%;
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10%;
    position: relative;
    top:0;
    left:0;
    transition: top 0.3s ease;
}
.pf-item-content-hide{
    opacity: 0;
    top:100%;
}
.pf-item-title{
    font-size: max(28px, 3.3vw);
    line-height: max(45px, 3.3vw);
    font-weight: 400;
    margin: 0;
}
.pf-item-text{
    font-size: max(16px, 1.171vw);
    line-height: max(22px, 1.610vw);
    font-weight: 400;
    margin:0;
}
.pf-mini-breakline svg{
    height: 10px;
    width: 50px;
}
.pf-mini-breakline svg path {
    fill: var(--accent-green);
}
.readable-text-normal-x1{
    font-size: 1.275rem;
    line-height: 1.89rem;
    font-weight: 300;
}
.readable-text-large-x1{
    font-size: 2rem;
    line-height: 3rem;
}
.pf-item-img img{
    width:100%;
    height: auto;
}


@media (max-width:1000px) {
    #pf-main-wrapper{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        width: 100%;
    }
}

@media (max-width:768px) {
    #pf-main-wrapper{
        display:grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr;
        grid-auto-flow: column;
        overflow: scroll;
        width: auto;
        height: auto;
        margin: 0 0 30px 0;
    }
    #pf-hero-cont{
        display: flex;
        justify-content: center;
        padding-top: 120px;
        height: 250px;
        width: 100%;
        box-sizing: border-box;
    }
    .pf-item{
        box-sizing: border-box;
        width: 80vw;
        height: auto;
        padding: 0 10px;
        aspect-ratio: auto;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        /*justify-content: auto;
        align-items: auto;
        justify-self: auto;*/
        position: relative;
        overflow: hidden;
    }
    .pf-item:hover{
        border: none;
    }
    .pf-item-img{
        opacity: 1;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        aspect-ratio: auto;
        height: auto;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .pf-item-img img{
        width:100%;
        height: auto;
        border-radius: 20px;
    }

    .pf-item-content{
        opacity: 1;
        width:100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: unset;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
        position: relative;
        top:0;
        left:0;
        transition: top 0.3s ease;
    }

}

@media (max-width:700px) {
    

}