/*
Theme Name: M. Abdulali Resume
Theme URI: https://mabdulali.com
Author: Antigravity AI
Description: A premium, minimalist resume theme inspired by claudiamazzantiarchitetto.it
Version: 1.0
Text Domain: mabdulali-resume
*/

:root {
    --bg-light: #f9f9f9;
    --text-main: #000000;
    --text-muted: #666666;
    --accent: #333333;
    --font-main: 'Poppins', sans-serif;
    --font-mono: 'Inconsolata', monospace;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

section {
    padding: 100px 0;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
}

.item {
    border-top: 1px solid #000;
    padding-top: 30px;
    margin-bottom: 50px;
}

.item-meta {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.item-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.nav-minimal {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-minimal .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-minimal {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.btn-minimal:hover {
    background: #000;
    color: #fff;
}

footer {
    padding: 60px 0;
    border-top: 1px solid #eee;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-align: center;
    color: var(--text-muted);
}
