@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&family=Roboto+Condensed:wght@300;400;700&display=swap'); 

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

:root {
    --gold: #f3d175;
    --gold-muted: #E6C200;
    --slate-black: #121212;
    --text-main: #000000;
    --text-muted: #4B5563;
    --bg-offset: #FAFAFA;
    --dark-gray:  #545454;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--text-main);
    background: #ffffff;
    margin: 0;
    text-transform: lowercase;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.03em;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}

.logo {
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-text {
    color: var(--slate-black);
}

.logo-dot {
    color: var(--gold);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
}

.nav-link {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--gold-muted);
}

/* Intro Section */
#intro {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--slate-black);
    line-height: 1;
}

.intro-title .gold-dot {
    color: var(--gold);
}

/* Section Header */
.section-header {
    max-width: 1100px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

/* Project Grid */
.project-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .project-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background: white;
    border: 1px solid #eeeeee;
    padding: 2rem;
    /*border-radius: 4px;*/
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    overflow: hidden;
}

.project-card:hover {
    /*border-color: var(--gold);*/
    /*transform: translateY(-4px);*/
    box-shadow: 0 10px 30px -10px rgba(56, 56, 56, 0.2);
}

.project-image-container {
    width: 100%;
    height: 140px;
    background: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-image-container img {
    opacity: 1;
}

.project-title {
    font-weight: 700;
    font-size: 0.875rem;
    /*text-transform: uppercase;*/
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--slate-black);
}

.project-description {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--slate-black);
    background: #f3f4f6;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.project-card:hover .tech-tag {
    background: #fffbeb;
    border-color: var(--gold);
}

.btn-link {
    font-weight: 800;
    font-size: 0.75rem;
    /*text-transform: uppercase;*/
    letter-spacing: 0.1em;
    background: var(--dark-gray);
    color: white;
    padding: 0.75rem 1.5rem;
    /*border-radius: 6px;*/
    text-decoration: none;
    margin-top: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-link:hover {
    background: var(--gold);
    color: var(--slate-black);
    /*box-shadow: 0 0 15px var(--gold);*/
}

/* Skills Section */
.skills-section {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.skill-group {
    border-top: 1px solid #f3f4f6;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .skill-group {
        flex-direction: row;
        align-items: flex-start;
    }
    .skill-label {
        width: 150px;
        margin-bottom: 0;
    }
}

.skill-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-muted);
}

.skill-list {
    font-size: 1rem;
    color: var(--slate-black);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    flex: 1;
}

.skill-item {
    font-weight: 400;
    white-space: nowrap;
}

.skill-item:not(:last-child)::after {
    content: "•";
    margin-left: 1.25rem;
    color: var(--gold);
    font-weight: 900;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #4e4e4e;
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid #f3f4f6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1.25rem;
}

.social-link:hover {
    color: var(--gold);
}

.copyright {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #9ca3af;
    font-weight: 700;
}

/* Utilities */
.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-slate-900 {
    background-color: #0f172a;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}