:root {
    --primary: #94c5f8;
    --secondary: #b4e5dd;
    --background: #faf4f0;
    --text: #5a5a5a;
    font-family: Inter, system-ui, sans-serif;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 4rem 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffb5ba, #94c5f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.project-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-card h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: #f7a5a9;
}

.project-card p {
    margin: 0;
    opacity: 0.8;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e8f4f2;
    color: #5a5a5a;
    border-radius: 1rem;
    font-size: 0.875rem;
    margin: 0.5rem 0.5rem 0 0;
    border: 1px solid #b4e5dd;
}

footer {
    text-align: center;
    padding: 2rem;
    opacity: 0.7;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card:nth-child(1) {
    background: #ffeae9;
}

.project-card:nth-child(2) {
    background: #e8f4f2;
}

.project-card:nth-child(3) {
    background: #e9f0ff;
}

.project-card:nth-child(4) {
    background: #fff0e5;
}

.project-card:nth-child(5) {
    background: #f2e9ff;
    /* Light Purple */
}

.project-card:nth-child(6) {
    background: #fff9e5;
    /* Light Yellow */
}

/* You can continue this pattern for more cards */
.project-card:nth-child(7) {
    background: #e5f9e8;
    /* Light Green */
}

.project-card:nth-child(8) {
    background: #e5eaf0;
    /* Light Grey/Blue */
}