/*
Theme Name: Ultimate Portfolio 2026
Author: Iriza & Gemini
Description: Poppins, Glassmorphism, Raw HTML Canvas Mode, Dual Media Loader.
Version: 1.5
*/

/* 1. Reset & General */
body, html {
    margin: 0; padding: 0;
    font-family: 'Poppins', sans-serif !important;
    background: #f8f9fa; color: #212529;
    transition: background 0.4s ease, color 0.4s ease;
}

body.dark-mode { background: #0a0b10; color: #ffffff; }

/* 2. Glassmorphism Design */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3. Page Loader */
#page-loader {
    position: fixed; inset: 0; z-index: 10000;
    background: #0a0b10; display: flex;
    justify-content: center; align-items: center;
}

.loader-bar {
    width: 150px; height: 3px; background: rgba(255,255,255,0.1);
    margin-top: 20px; border-radius: 5px; overflow: hidden; position: relative;
}

.loader-bar::after {
    content: ''; position: absolute; left: -100%; width: 100%; height: 100%;
    background: #0073ff; animation: load 1.5s infinite linear;
}

@keyframes load { 100% { left: 100%; } }

/* 4. Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px; padding: 40px 20px;
}

.project-card { 
    border-radius: 20px; 
    overflow: hidden; 
    transition: transform 0.3s ease; 
}

.project-card:hover { transform: translateY(-10px); }
