/* --- FONTOVI --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&family=Source+Code+Pro:wght@200;400;700&display=swap');

@font-face {
    font-family: 'Rye';
    src: url('../fonts/Rye-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #f7e0a1 50%, #8c6a2d 100%);
    --red-accent: #8b0000;
    --dark-bg: #050505;
    --mono-font: "Source Code Pro", monospace;
    --rye-font: 'Rye', serif;
    --roboto: 'Roboto', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: #f5f5f5;
    font-family: var(--roboto);
    margin: 0;
}

.portfolio-main-wrapper {
    display: flex;
    padding: 40px 60px;
    gap: 40px;
}

    .portfolio-main-wrapper input {
    font-size:16px !important;
    }

    .filter-aside {
        width: 250px;
        flex-shrink: 0;
        background: transparent;
        border: none;
        padding: 20px 0;
        height: fit-content;
        position: sticky;
        top: 40px;
    }

.brand-header {
    font-family: var(--rye-font);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: left;
}

.filter-aside .form-control {
    font-family: var(--mono-font);
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    color: white !important;
}

    .filter-aside .form-control::placeholder {
        font-family: var(--mono-font);
        color: rgba(255,255,255,0.3);
    }

.form-check-input:checked {
    background-color: var(--red-accent);
    border-color: var(--red-accent);
}

.tattoo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-grow: 1;
}

.tattoo-card {
    position: relative;
    aspect-ratio: 3/4;
    background: #111;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

    .tattoo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    }

    .tattoo-card:hover img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

.badge-extreme {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red-accent);
    color: white;
    padding: 6px 16px;
    font-weight: 900;
    font-size: 0.75rem;
    z-index: 5;
    text-transform: uppercase;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
}

    .card-info h3 {
        font-family: var(--roboto);
        font-weight: 800;
        text-transform: uppercase;
        margin: 0;
        font-size: 1.3rem;
        color: white;
        text-shadow: 1px 1px 10px black;
    }


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&family=Source+Code+Pro:wght@200;400;700&display=swap');

@font-face {
    font-family: 'Rye';
    src: url('../fonts/Rye-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #f7e0a1 50%, #8c6a2d 100%);
    --red-accent: #8b0000;
    --dark-bg: #050505;
    --mono-font: "Source Code Pro", monospace;
    --rye-font: 'Rye', serif;
    --roboto: 'Roboto', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: #f5f5f5;
    font-family: var(--roboto);
    margin: 0;
    overflow-x: hidden;
}

.portfolio-main-wrapper {
    display: flex;
    padding: 40px 60px;
    gap: 40px;
}

.filter-aside {
    width: 250px;
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 20px 0;
    height: fit-content;
    position: sticky;
    top: 40px;
}

.brand-header {
    font-family: var(--rye-font);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.filter-aside .form-control {
    font-family: var(--mono-font);
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: white !important;
}

    .filter-aside .form-control::placeholder {
        font-family: var(--mono-font);
        color: rgba(255, 255, 255, 0.3);
    }

.btn-reset {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--mono-font);
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 15px;
}

    .btn-reset:hover {
        color: white;
        border-color: white;
        background: rgba(255, 255, 255, 0.05);
    }

.tattoo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-grow: 1;
}

.tattoo-card {
    position: relative;
    aspect-ratio: 3/4;
    background: #111;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

    .tattoo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    }

    .tattoo-card:hover img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

.badge-extreme {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red-accent);
    color: white;
    padding: 6px 16px;
    font-weight: 900;
    font-size: 0.75rem;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}

    .card-info h3 {
        font-family: var(--roboto);
        font-weight: 800;
        text-transform: uppercase;
        margin: 0;
        font-size: 1.3rem;
        color: white;
        text-shadow: 1px 1px 10px black;
    }

.details-view-wrapper {
    padding: 60px 10%;
    min-height: 100vh;
}

.portrait-holder {
    position: relative;
    border: 1px solid #1a1a1a;
    background: #000;
    padding: 10px;
}

    .portrait-holder img {
        width: 100%;
        height: auto;
        display: block;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }

.details-content-panel {
    padding-left: 20px;
}

.details-title-modern {
    font-family: var(--roboto);
    font-weight: 900;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.details-category-label {
    font-family: var(--mono-font);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description-box {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--roboto);
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.9;
    border-left: 2px solid var(--red-accent);
    padding-left: 25px;
    margin: 40px 0;
}

.btn-cta-eternal {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 50px;
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: #fff;
    font-family: var(--roboto);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    overflow: hidden;
}

    .btn-cta-eternal::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gold-gradient);
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: -1;
    }

    .btn-cta-eternal:hover {
        color: #000;
        border-color: transparent;
    }

        .btn-cta-eternal:hover::before {
            left: 0;
        }

.back-link {
    font-family: var(--mono-font);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
    letter-spacing: 2px;
}

    .back-link:hover {
        color: white;
        transform: translateX(-5px);
    }

.thumb-item-modern {
    width: 70px;
    height: 95px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    filter: brightness(0.5) grayscale(100%);
}

    .thumb-item-modern:hover, .thumb-item-modern.active {
        filter: brightness(1) grayscale(0%);
        border-color: #fff;
        transform: translateY(-5px);
    }

@media (max-width: 1200px) {
    .tattoo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-main-wrapper {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {

    .filter-aside {
        width: 100%;

    }

    .brand-header {
    text-align:end;
    }

    .form-check-label {
    font-size:4vw;
    }

    .form-check {
    }

    .portfolio-main-wrapper {
        flex-direction: column;
    }

    .tattoo-grid {
        grid-template-columns: 1fr;
    }

    .details-view-wrapper {
        padding: 40px 5%;
    }

    .back-link {
    padding-left:24%;
    font-size: 3vw;
    }


    .details-content-panel {
        padding-top:10vh;
        padding-left: 10px;
    }

    .details-category-label {
    text-align:center;
    }

    .details-title-modern {
        text-align: center;
    }

    .description-box {
        text-align: justify;
        padding-right: 5vw;
    }

    .btn-cta-eternal {
    width:97.5%;
    font-size:3vw;
    padding: 15px 10px;
    }

    .small {
    text-align:center;
    }

}


@media (min-width: 768px) and (max-width: 1024px) {
    .filter-aside {
       padding-top:7vh;
    }




    .details-view-wrapper {
        padding: 40px 5%;
    }

    .back-link {
        padding-left: 34%;
        font-size: 2vw;
    }


    .details-content-panel {
        padding-top: 10vh;
        padding-left: 10px;
    }

    .details-category-label {
        text-align: center;
    }

    .details-title-modern {
        text-align: center;
    }

    .description-box {
        text-align: justify;
        padding-right: 5vw;
    }

    .btn-cta-eternal {
        width: 97.5%;
        font-size: 3vw;
        padding: 15px 10px;
    }

    .small {
        text-align: center;
    }
}