/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    background: #2563eb;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

.desktop-nav {
    display: none; /* Hidden on mobile */
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 60px auto;
    text-align: left;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.blue-text {
    color: #2563eb;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.5;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 Column on Mobile */
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
}

.project-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.img-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    background-color: #f0f0f0;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
}

/* Placeholder colors for images */
.aura { background-color: #8d5534; }
.kinetic { background-color: #e5e5e5; }
.form-void { background-color: #fafafa; border: 1px solid #eee; }
.onyx { background-color: #1a2421; }

.project-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.project-info p {
    color: #888;
    font-size: 0.9rem;
}

.arrow {
    color: #2563eb;
    font-size: 1.2rem;
}

/* Footer */
footer {
    max-width: 1200px;
    margin: 60px auto 20px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
}

/* --- DESKTOP ADAPTATION (Landscape) --- */
@media (min-width: 768px) {
    body {
        padding: 40px;
    }

    h1 {
        font-size: 4rem; /* Larger font for Desktop */
    }

    .desktop-nav {
        display: flex;
        gap: 30px;
    }

    .desktop-nav a {
        text-decoration: none;
        color: #888;
        font-weight: 600;
        font-size: 0.8rem;
    }

    .desktop-nav a.active {
        color: #2563eb;
    }

    .menu-burger {
        display: none;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns Landscape */
    }

    .img-container {
        height: 400px; /* Taller images on Desktop */
    }
}

@media (min-width: 1100px) {
    /* Optional: 3 Columns if the screen is very wide */
    /* .project-grid { grid-template-columns: repeat(3, 1fr); } */
}