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

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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f0c14b;
    margin-bottom: 0.5rem;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin-bottom: 3rem;
}

.section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2rem;
    color: #f0c14b;
    margin-bottom: 2rem;
    text-align: center;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: #1a1a2e;
    border: 1px solid #2a2a4a;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #f0c14b;
}

.card h3 {
    color: #f0c14b;
    margin-bottom: 0.5rem;
}

.card p {
    color: #999;
    font-size: 0.95rem;
}

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

.card .tech span {
    background: #2a2a4a;
    color: #f0c14b;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.skill {
    background: #1a1a2e;
    border: 1px solid #2a2a4a;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: #ccc;
    font-size: 0.95rem;
}

.contact {
    text-align: center;
    padding: 4rem 2rem;
    background: #1a1a2e;
}

.contact h2 {
    color: #f0c14b;
    margin-bottom: 1rem;
}

.contact p {
    color: #999;
    margin-bottom: 0.5rem;
}

.contact a {
    color: #f0c14b;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 2rem;
    color: #555;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .hero .subtitle { font-size: 1rem; }
    .section { padding: 2rem 1rem; }
}
