/* --- Variables & Base --- */
:root {
    --bg: #1a1a1a;
    --bg-card: #242424;
    --text: #f0ece4;
    --text-muted: #a09a8e;
    --text-dim: #6b665c;
    --accent: #d4a853;
    --accent-blue: #6b8cff; /* Used for the card borders as drawn */
    --border: rgba(255, 255, 255, 0.08);
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    border-bottom: 1px solid var(--border);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.1rem;
    color: var(--accent);
}

.nav-logo span {
    color: var(--text-dim);
    font-weight: 400;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

/* --- Hero Section --- */
.workshop-hero {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    padding: 60px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hero-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Graphic Section */
.hero-graphic {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.glow-box {
    text-align: center;
    color: var(--accent-blue);
    position: relative;
    z-index: 2;
}

.glow-box i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.glow-box span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(107, 140, 255, 0.2);
    border-radius: 50%;
    animation: pulser 2s infinite ease-out;
    z-index: -1;
}

@keyframes pulser {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* --- Projects Container --- */
.projects-container {
    padding: 0 8%;
    max-width: 1400px;
    margin: 40px auto 0;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Project Cards --- */
.project-card {
    background: rgba(36, 36, 36, 0.6);
    border: 1px solid rgba(107, 140, 255, 0.3); /* Blueish border as in sketch */
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 140, 255, 0.1);
    border-color: rgba(107, 140, 255, 0.6);
}

.card-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(107, 140, 255, 0.2);
    text-align: left;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.status-line {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.description-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Progress Bar */
.progress-section {
    margin-top: 15px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%; /* Starts at 0 for animation */
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Responsive */
@media (max-width: 900px) {
    .workshop-hero {
        grid-template-columns: 1fr;
    }
}
