#project-content {
    padding: 100px 0;
}


.project-header {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.project-title-desc {
    flex: 2;
}

.project-details {
    flex: 2;
    display: flex;
    gap: 0 50px;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;

    padding-top: 20px;
}

.project-title {
    display: flex;
    align-items: center;
    gap: 0.2em;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    color: #333;
}

.detail-item {
    width: 195px;
    padding-bottom: 24px;
    border-bottom: 1px solid #333;
}





.detail-label {
    display: block;
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
}



/* Full-width Image Styles */
.project-image-full {
    margin: 80px 0;
    margin-left: -10%;
    width: calc(100vw - 4px);
}

.project-image-full img {
    width: 100%;
    height: auto;
    display: block;
}


/* More Projects Section */
.more-projects {
    margin-top: 120px;
    padding-top: 60px;
    border-top: 2px solid #f0f0f0; /* Lighter border color */
}

.more-projects-title {
    font-size: 3rem;
    font-weight: 600;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.project-card {
    text-decoration: none;
    color: #000;
    display: block;
}

.project-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.project-card:hover img {
    opacity: 0.8;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}


/* Responsive Styles */
@media (max-width: 768px) {
    #project-content {
        padding: 60px 0;
    }

    .project-header {
        flex-direction: column; /* Stack header items vertically */
        margin-bottom: 40px;
        gap: 30px;
    }

    .project-image-full{
        margin: 40px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr; /* Stack grid items on mobile */
    }
}