/* Loading Overlay Styles */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #181818;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    transition: opacity 0.6s;
}
.loading-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100vh;
    background: orange;
}
.loading-content {
    margin: 0 0 5vh 5vw;
    display: flex;
    align-items: flex-end;
}
.loading-percent {
    font-size: 16vw;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}
.loading-symbol {
    font-size: 3vw;
    color: #fff;
    font-weight: 400;
    margin-bottom: 3vw;
}
#loading-overlay.hide {
    opacity: 0;
    pointer-events: none;
}
/* Custom selection color */
::selection {
    background: orange;
    color: #fff;
}
/* Custom styles for dramatic typography and effects */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #000; /* Pure black background */
    color: #fff; /* White text */
    /* Hide default cursor and use the custom one */
    cursor: none; 
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background 0.2s, transform 0.1s;
    z-index: 9999;
}
/* Custom styles for dramatic typography and effects */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #000; /* Pure black background */
    color: #fff; /* White text */
    /* Hide default cursor and use the custom one */
    cursor: none; 
}

/* Project Card Hover Effect (Subtle Lift) */
.project-card {
    transition: transform 0.3s ease-out, opacity 0.3s;
    cursor: none; /* Override body:cursor to allow custom cursor to work properly */
}

.project-card:hover {
    transform: translateY(-6px) scale(1.01);
    /* Optional: subtle shadow for depth */
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.05), 
                0 4px 6px -2px rgba(255, 255, 255, 0.05);
}

/* Custom Underline/Reveal on Nav Links */
.nav-link {
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- Custom Cursor Styling --- */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background 0.2s, transform 0.1s;
}
.custom-cursor-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #aaa;
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: border-color 0.2s, transform 0.1s, opacity 0.2s;
    opacity: 1;
}
.custom-cursor-ring.hide {
    opacity: 0;
}
a, button, input, textarea, select {
    cursor: none;
}
