/**
 * Widget: Project Showcase
 * Styles for the Elementor Project Showcase widget
 */

/* ==========================================================================
   WRAPPER
   ========================================================================== */
.project-showcase-wrapper {
    width: 100%;
}

/* ==========================================================================
   IMAGE
   ========================================================================== */
.project-showcase-image {
    overflow: hidden;
}

.project-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0 16px 16px 0;
}

/* ==========================================================================
   CONTENT
   ========================================================================== */
.project-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

.project-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.project-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.project-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

/* ==========================================================================
   INFO BOXES
   ========================================================================== */
.project-info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 24px;
}

.info-box {
    background: #f8f8f8;
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
}

.info-value {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    display: block;
    margin-bottom: 4px;
}

.info-label {
    font-size: 12px;
    color: #666;
    display: block;
}

/* ==========================================================================
   BUTTON
   ========================================================================== */
.project-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
}

.project-button:hover {
    background: #000;
    color: #fff;
}

.project-button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.project-button:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    .project-showcase-wrapper {
        flex-direction: column !important;
    }

    .project-showcase-image {
        border-radius: 8px;
        flex: 0 0 100% !important;
        padding: 0 16px;
    }

    .project-showcase-content {
        flex: 0 0 100% !important;
    }

    .project-title {
        font-size: 24px;
    }

    .project-button {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}