

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.project-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid black;
    background: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.project-item:hover {
    background: #f0f0f0;
}

.project-icon {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.project-icon img {
    width: 100%;
    height: 100%;
}

.project-info h4 {
    font-size: 12px;
    margin: 0 0 2px 0;
    font-weight: bold;
}

.project-info p {
    font-size: 10px;
    margin: 0;
    color: #666;
}

.project-showcase {
    margin-top: 15px;
}

.project-detail {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid black;
    background: white;
}

.project-detail h3 {
    font-size: 14px;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.project-detail p {
    font-size: 11px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.project-tags {
    margin: 10px 0;
}

.tag {
    display: inline-block;
    background: black;
    color: white;
    padding: 2px 6px;
    font-size: 9px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.project-links {
    margin-top: 10px;
}

.project-link {
    display: inline-block;
    background: white;
    color: black;
    border: 1px solid black;
    padding: 4px 8px;
    text-decoration: none;
    font-size: 10px;
    margin-right: 8px;
    cursor: pointer;
}

.project-link:hover {
    background: black;
    color: white;
}

.back-button {
    background: white;
    color: black;
    border: 1px solid black;
    padding: 4px 8px;
    font-size: 10px;
    cursor: pointer;
    margin-bottom: 15px;
    font-family: 'Chicago', 'Courier New', monospace;
}

.back-button:hover {
    background: black;
    color: white;
}

.skills-section {
    margin-bottom: 20px;
}

.skills-section h3 {
    font-size: 12px;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.skill-item {
    padding: 6px 8px;
    background: white;
    border: 1px solid black;
    font-size: 10px;
    text-align: center;
}

.contact-section {
    margin-bottom: 20px;
}

.contact-section h3 {
    font-size: 12px;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 8px;
    font-size: 11px;
}

.contact-item strong {
    font-weight: bold;
}

.contact-item a {
    color: black;
    text-decoration: underline;
}

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

.social-link {
    display: inline-block;
    background: white;
    color: black;
    border: 1px solid black;
    padding: 6px 10px;
    text-decoration: none;
    font-size: 10px;
    cursor: pointer;
}

.social-link:hover {
    background: black;
    color: white;
}


@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
    }
}


.product-section ul {
    margin-top: 8px;
    padding-left: 15px;
}

.product-section li {
    font-size: 11px;
    margin-bottom: 3px;
}


.design-specialization {
    background: #f8f8f8;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
}

.project-detail h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.skill-item {
    transition: all 0.2s ease;
}

.skill-item:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}


.skills-section h3 {
    text-decoration: underline;
    text-underline-offset: 3px;
}


.skills-section:first-child .skill-item {
    background: #ff6b35;
    color: white;
}

.skills-section:first-child .skill-item:hover {
    background: #e55a2b;
}