@import url('common.css');

.full-project-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 95vh;
    flex-direction: column;
    padding-top: 150px;
}

.project-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.project {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.project h2 {
    font-family: var(--secondary-font);
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 500;
    text-align: center;
}

.project p {
    margin: 0 0 20px 0;
    text-align: center;
    flex-grow: 1;
}

.project button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    width: 150px;
    border: none;
    border-radius: 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.project button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.project button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.project button:hover::before {
    left: 100%;
}

.project button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.media {
    margin-top: 40px;
}

@media (max-width: 900px) {
    .full-project-section {
        padding-top: 120px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .project {
        flex-direction: column;
    }
    
    .project-image {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .project-content {
        padding-left: 0;
    }
}