/* ==========================================
   PORTFOLIO DASHBOARD UNIQUE STYLES
   ========================================== */
body {
    background-color: #0b0b0d !important;
    color: #ffffff;
    min-height: 100vh;
    padding: 40px 5%;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.back-home-btn {
    position: absolute;
    top: 0; 
    left: 0;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #ff4d4d;
    border-color: #ff4d4d;
    color: #fff;
}

.showcase-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #ff4d4d, #ff8585);
    -webkit-background-clip: text;
    background-clip: text; /* standard රූල් එක එකතු කළා */
    -webkit-text-fill-color: transparent;
    color: transparent; /* standard fallback එක එකතු කළා */
    margin-bottom: 10px;
}

.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.showcase-filter-btn {
    background: #16161a;
    border: 1px solid #2a2a35;
    color: #b0b0b0;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-filter-btn:hover, 
.showcase-filter-btn.active {
    background: #ff4d4d;
    color: #fff;
    border-color: #ff4d4d;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
    transform: translateY(-2px);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.showcase-card {
    background: #121216;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #1e1e24;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.showcase-card:hover {
    transform: translateY(-10px);
    border-color: #ff4d4d;
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.15);
}

.showcase-img-box {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #1a1a24;
}

.showcase-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-img-box img {
    transform: scale(1.08);
}

.showcase-info {
    padding: 20px;
}

.showcase-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.showcase-info span {
    font-size: 0.85rem;
    color: #ff4d4d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Responsive configurations for mobile */
@media (max-width: 768px) {
    .back-home-btn { 
        position: relative; 
        display: inline-block; 
        margin-bottom: 20px; 
    }
    .showcase-title { 
        font-size: 2rem; 
    }
}
/* ==========================================
   PORTFOLIO DASHBOARD UNIQUE STYLES
   ========================================== */
body {
    background-color: #ffffff !important; /* පසුබිම සම්පූර්ණයෙන්ම සුදු කළා */
    color: #222222; /* අකුරු පැහැදිලිව පෙනෙන්න තද අළු/කළු පාටක් දුන්නා */
    min-height: 100vh;
    padding: 40px 5%;
}

/* Explore our premium catalog... කියන උපමාතෘකාවේ පාට */
.portfolio-header p {
    color: #555555 !important;
}

/* නිර්මාණ දාලා තියෙන Cards වල පසුබිම සහ Borders */
.showcase-card {
    background: #f8f9fa !important; /* කාඩ් එකට ලස්සන ලා අළු පාටක් දුන්නා */
    border: 1px solid #e0e0e0 !important; /* කාඩ් එක වටේට ලා বෝඩරයක් */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

.showcase-info h3 {
    color: #222222 !important; /* කාඩ් ඇතුළේ තියෙන මාතෘකා තද පාට කළා */
}

/* කාඩ් එක උඩට මවුස් එක ගෙනිච්චම (Hover) වෙනස් වීම */
.showcase-card:hover {
    border-color: #ff4d4d !important;
    box-shadow: 0 15px 30px rgba(255, 77, 77, 0.15) !important;
}

/* උඩ තියෙන Filter Buttons (All Works, Luxury Logos...) සුදු පසුබිමට ගැලපෙන්න හැදුවා */
.showcase-filter-btn {
    background: #eeeeee;
    border: 1px solid #cccccc;
    color: #444444;
}

.showcase-filter-btn:hover, 
.showcase-filter-btn.active {
    background: #ff4d4d;
    color: #fff;
    border-color: #ff4d4d;
}

/* Back to Home ಬಟන් එක සකස් කිරීම */
.back-home-btn {
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    color: #333333;
}