/*
Theme Name: TheDevLab Portfolio
Theme URI: https://thedevlab.de
Author: TheDevLab
Author URI: https://thedevlab.de
Description: A premium, dark-mode first portfolio theme with app-like interactions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thedevlab
Tags: portfolio, dark-mode, grid-layout, accessible
*/

/* Reset & Base Variables (Copied from previous analysis) */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --accent: #3b82f6;
    --border: #262626;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Bricolage Grotesque', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    margin: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Grid Layouts */
.grid-projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}