/* Minimal Hero */
.hero-minimal {
    padding: 60px 0 30px;
    text-align: center;
    background: var(--background);
}

.hero-minimal .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-minimal .hero-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.hero-minimal .hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
}

/* Projects Section */
.projects-section {
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
    background: var(--background);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Featured Project */
.project-featured {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-featured:hover {
    border-color: var(--text-tertiary);
    transform: translateY(-4px);
}

.project-featured .project-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-featured .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.project-info {
    padding: var(--spacing-lg);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.project-name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.project-featured .project-name {
    font-size: 32px;
}

.project-version {
    padding: 4px 10px;
    background: var(--surface-elevated);
    border: 0.5px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.project-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.project-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
}

.stat i {
    color: var(--accent);
    font-size: 14px;
}

/* Project Actions */
.project-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.project-actions-single {
    grid-template-columns: 1fr;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--surface-elevated);
    color: var(--text-primary);
    border: 0.5px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--text-tertiary);
    transform: translateY(-2px);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.project-card {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    border-color: var(--text-tertiary);
    transform: translateY(-4px);
}

.project-card .project-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-card .project-info {
    padding: var(--spacing-md);
}

.project-card .project-name {
    font-size: 21px;
}

.project-card .project-desc {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer Minimal */
.site-footer {
    background: var(--surface);
    border-top: 0.5px solid var(--border);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-logo a {
    color: var(--text-primary);
    text-decoration: none;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-elevated);
    border: 0.5px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 0.5px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-minimal .hero-title {
        font-size: 40px;
    }

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

    .project-featured .project-image {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .project-actions {
        grid-template-columns: 1fr;
    }
}