/**
 * Yoowan Elementor Addon - Frontend Styles
 */

/* Example Widget Styles */
.yoowan-example-widget {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.yoowan-example-widget:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.yoowan-example-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.yoowan-example-description {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.yoowan-example-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.yoowan-example-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.yoowan-example-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .yoowan-example-widget {
        padding: 15px;
    }
    
    .yoowan-example-title {
        font-size: 20px;
    }
    
    .yoowan-example-description {
        font-size: 14px;
    }
    
    .yoowan-example-button {
        padding: 8px 16px;
        font-size: 14px;
        width: 100%;
    }
}