/* ==========================================================================
   MASSIMO SLOMP — Portfolio Design System
   Neo-Brutalist Utility · 2026
   ========================================================================== */

/* --- Base --- */
html { scroll-behavior: smooth; }

body {
    background-color: #f5f5f5;
    color: #000;
    overflow-x: hidden;
}

/* --- Brutalist Components --- */
.brutal-border {
    border: 3px solid black;
}

.brutal-card {
    background: white;
    border: 3px solid black;
    box-shadow: 5px 5px 0px 0px black;
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brutal-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px 0px black;
}

/* --- Buttons --- */
.brutal-btn {
    display: inline-block;
    background: #000;
    color: white;
    border: 3px solid black;
    box-shadow: 5px 5px 0px 0px #2563eb;
    transition: all 0.1s ease;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.brutal-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px 0px #2563eb;
}

.brutal-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0px 0px #2563eb;
}

.brutal-btn.btn-blue {
    background: #2563eb;
    box-shadow: 5px 5px 0px 0px black;
}

.brutal-btn.btn-blue:hover {
    box-shadow: 7px 7px 0px 0px black;
}

.brutal-btn.btn-blue:active {
    box-shadow: 0px 0px 0px 0px black;
}

/* --- Tags --- */
.tag {
    background: white;
    border: 2px solid black;
    padding: 2px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

/* --- Section Labels --- */
/* --- Technical Notepad Background --- */
.hero-paper {
    background-color: #fdfdfb;
    background-image: 
        linear-gradient(rgba(0, 100, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 100, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* --- Post-it Card --- */
.brutal-postit {
    background: #fef08a;
    color: #713f12;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    border-bottom-right-radius: 60px 5px;
    padding: 2rem;
    position: relative;
}

.brutal-postit::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.section-label {
    background: #fff;
    border: 3px solid black;
    display: inline-block;
    padding: 8px 24px;
    transform: rotate(-1.5deg);
    margin-bottom: 48px;
}

/* --- Workflow Steps --- */
.workflow-step {
    border-left: 3px solid black;
    padding-left: 24px;
    position: relative;
}

.workflow-step::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #2563eb;
    border: 3px solid black;
}

/* --- Shadow Utility --- */
.shadow-brutal {
    box-shadow: 3px 3px 0px 0px black;
}

/* --- Mobile Menu --- */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 4px solid black;
    padding: 16px 24px;
    z-index: 100;
}

.mobile-menu.open {
    display: flex;
}
