/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/

/* Logo positioning and sizing adjustment */
.logo {
    transform: translateY(-4px);
}

.logo img {
    height: 26px;
    width: auto;
}

/* Portfolio project tags */
.portfolio-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.portfolio-box:hover .portfolio-tag {
    opacity: 0;
}


