.welcome-title {
    text-align: center;
    margin-bottom: 20px;
}

.about-section {
    padding: 40px 0;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.about-text {
    flex: 1;
    max-width: 600px;
    background-color: var(--primary-color);
    z-index: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.about-image {
    flex: 1;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.about-image img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.featured-projects {
    margin: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.project-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    overflow: hidden;
    margin: 1rem 0;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background-color: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.2) 100%);
    z-index: 1;
}

.project-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.project-content {
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
}

.project-category {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.project-title {
    margin: 0.5rem 0;
    color: var(--dark-accent);
}

.project-description {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark-accent);
}

.color-showcase {
    margin: 4rem 0;
}

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

.color-item {
    padding: 1rem;
    border-radius: 8px;
    color: white;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.color-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.color-item::after {
    content: attr(data-hex);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.color-item:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text, .about-image {
        max-width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 